X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/9c5d9a4e77a10b4e60d89d3890e49002bd7f3993..87ff3f803d2f147e6fa939a99c4c4a4ca6aa965f:/wolnelektury/templates/catalogue/book_list.html diff --git a/wolnelektury/templates/catalogue/book_list.html b/wolnelektury/templates/catalogue/book_list.html index c5f916428..a32f60f01 100644 --- a/wolnelektury/templates/catalogue/book_list.html +++ b/wolnelektury/templates/catalogue/book_list.html @@ -4,24 +4,47 @@ {% block bodyid %}book-a-list{% endblock %} -{% block title %}{% trans "Alphabetical listing of works on WolneLektury.pl" %}{% endblock %} +{% block titleextra %}{% trans "Listing of all works" %}{% endblock %} {% block body %} -

{% trans "Alphabetical listing of works" %}

-
-

{{ form.q }} {% trans "or" %} {% trans "return to main page" %}

-
+

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

-
- {% 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 %} +
+
+ {% block book_list %} + {% 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 %} + {% endblock %} +
+
+

{% trans "↑ top ↑" %}

-{% endblock %} \ No newline at end of file +{% endblock %}