X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/82fa12952975d2857e2eb02d66a7f133fd4d5e2e..2b0947f09254c72dbbd4b49c5248437a10b52441:/wolnelektury/templates/catalogue/book_short.html diff --git a/wolnelektury/templates/catalogue/book_short.html b/wolnelektury/templates/catalogue/book_short.html index 7f93a592b..8b36718e0 100644 --- a/wolnelektury/templates/catalogue/book_short.html +++ b/wolnelektury/templates/catalogue/book_short.html @@ -1,15 +1,18 @@ +{% load i18n %} <div class="book"> <div class="change-sets"> - <a href="{% url catalogue.views.book_sets book.slug %}" class="jqm-trigger">Na póÅkÄ!</a> + <a href="{% url catalogue.views.book_sets book.slug %}" class="jqm-trigger">{% trans "Put on the shelf!" %}</a> </div> - {% if book.children %} + {% if book.children.all|length %} <div class="book-parent-thumbnail"></div> {% else %} <div class="book-thumbnail"></div> {% endif %} <div class="book-description"> <h2><a href="{{ book.get_absolute_url }}">{{ book.title }}</a></h2> - <p style="margin: 0">Na skróty: {{ formats|join:", "|safe }}</p> - <p style="margin: 0">Utwór w kategoriach: {{ tags|join:", "|safe }}</p> + {% if formats %} + <p style="margin: 0">{% trans "Jump to" %}: {{ formats|join:", " }}</p> + {% endif %} + <p style="margin: 0">{% trans "Categories" %}: {{ tags|join:", " }}</p> </div> -</div> +</div> \ No newline at end of file