X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/5dce691e09c4a838ed0758a3c1c24b2345b4e2bb..e24e657ebf536f55c1bde66bd41563fae30a98b0:/src/catalogue/templates/catalogue/book_short.html diff --git a/src/catalogue/templates/catalogue/book_short.html b/src/catalogue/templates/catalogue/book_short.html index b69329bc4..190bdc8f9 100644 --- a/src/catalogue/templates/catalogue/book_short.html +++ b/src/catalogue/templates/catalogue/book_short.html @@ -1,5 +1,7 @@ {% spaceless %} {% load i18n %} + {% load thumbnail %} + {% load cache %} {% load catalogue_tags %} {% load book_shelf_tags from social_tags %} {% load static %} @@ -9,16 +11,23 @@
- {% block book-box-pre %} - {% include "catalogue/snippets/like_button.html" %} - {% endblock %} - {% with book.tags_by_category as tags %}
{% block book-box-body-pre %} {% endblock %} +
+ {% if book.cover_clean %} + + Cover + + {% endif %} + {% block cover-area-extra %}{% endblock %} +
+ + {% get_current_language as LANGUAGE_CODE %} + {% cache 86400 book_box_head_tags book.pk LANGUAGE_CODE %}
{% for tag in tags.author %} @@ -36,18 +45,9 @@ {% endif %}
-
- {% if book.cover_thumb %} - - Cover - - {% endif %} - {% block cover-area-extra %}{% endblock %} -
-
- {% trans "Epoch" %}:  + {% trans "Epoka" %}:  {% for tag in tags.epoch %} {{ tag.name }} {% if not forloop.last %}, {% endif %} @@ -55,7 +55,7 @@ - {% trans "Kind" %}:  + {% trans "Rodzaj" %}:  {% for tag in tags.kind %} {{ tag.name }} {% if not forloop.last %}, {% endif %} @@ -63,23 +63,25 @@ - {% trans "Genre" %}:  + {% trans "Gatunek" %}:  {% for tag in tags.genre %} {{ tag.name }} {% if not forloop.last %}, {% endif %} {% endfor %} - {% if book.extra_info.location %} - - {% trans "Region" %}:  - {{ book.extra_info.location }} - - {% endif %} + {% with extra_info=book.get_extra_info_json %} + {% if extra_info.location %} + + {% trans "Region" %}:  + {{ extra_info.location }} + + {% endif %} + {% endwith %} {% if book.is_foreign %} - {% trans "Language" %}:  + {% trans "Język" %}:  {{ book.language_name }} @@ -94,71 +96,73 @@ {% endif %} {% endwith %}
+ {% endcache %}
{% book_shelf_tags book.pk %} + {% cache 86400 book_box_tools book.pk book|status:request.user LANGUAGE_CODE %} {% if book|status:request.user != 'closed' %} {% else %} -

{% trans "For now this work is only available for our subscribers." %}

+ {% block preview-info %} +

+ Ten utwór jest na razie dostępny wyłącznie dla naszych Darczyńców. + Wspieraj Wolne Lektury +

+
{% content_warning book %}
+ {% endblock %} {% endif %} + {% endcache %} {% block book-box-extra-info %}{% endblock %} {% block box-append %}{% endblock %}
+ {% endwith %} + {% if book.abstract %} -
+
{{ book.abstract|safe }}
{% endif %} - {% endwith %} - - {% block right-column %} - {% if audiobooks %} -
- {% include 'catalogue/snippets/jplayer.html' %} -
- {% endif %} - {% endblock %}