X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/5923c1d5a9adb03043d45cf47684825aaa1e6f93..52c28b63e294283d557c9b26d3a2b267a2938a09:/wolnelektury/templates/catalogue/book_list.html diff --git a/wolnelektury/templates/catalogue/book_list.html b/wolnelektury/templates/catalogue/book_list.html index 1f87217a6..dd01066e8 100644 --- a/wolnelektury/templates/catalogue/book_list.html +++ b/wolnelektury/templates/catalogue/book_list.html @@ -1,26 +1,50 @@ {% extends "base.html" %} +{% load i18n %} {% load catalogue_tags chunks %} {% block bodyid %}book-a-list{% endblock %} -{% block title %}Alfabetyczny spis utworów w WolneLektury.pl{% endblock %} +{% block title %}{% trans "Listing of all works on WolneLektury.pl" %}{% endblock %} {% block body %} -

Alfabetyczny spis utworów

-
-

{{ form.q }} lub wróć do strony głównej

+

{% block book_list_header %}{% trans "Listing of all works" %}{% endblock %}

+ +

{{ form.q }} {{ form.tags }} + {% trans "or" %} {% trans "see" %}: + + {% trans "all books" %} + {% trans "audiobooks" %} + {% trans "DAISY" %} +

- -
- {% for first_letter, group in books_by_first_letter.items %} -
-

{{ first_letter }}

-
    - {% for book in group %} -
  1. {{ book.title }}
  2. - {% endfor %} -
-
+
{% block book_list_info %}{% endblock %}
+ +
+ {% trans "Table of Content" %} + {% for index, authors in books_nav.items %} + {% endfor %}
+
+ {% book_tree orphans books_by_parent %} + {% for author, group in books_by_author.items %} + {% if group %} + +
+

{{ author }}

+ {% book_tree group books_by_parent %} +
+ {% endif %} + {% endfor %} +
+
+

{% trans "↑ top ↑" %}

+
{% endblock %}