X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/e0de41ae1e67c230ad1e67f34f6f4f76e53d7234..8e2e65fd5f86516e7d15df0c1106a0b861bfb011:/wolnelektury/templates/catalogue/book_list.html?ds=sidebyside diff --git a/wolnelektury/templates/catalogue/book_list.html b/wolnelektury/templates/catalogue/book_list.html index 3e6a9c555..7d49cffa1 100644 --- a/wolnelektury/templates/catalogue/book_list.html +++ b/wolnelektury/templates/catalogue/book_list.html @@ -4,24 +4,23 @@ {% block bodyid %}book-a-list{% endblock %} -{% block title %}{% trans "Alphabetical listing of works on WolneLektury.pl" %}{% endblock %} +{% block title %}{% trans "Listing of all works on WolneLektury.pl" %}{% endblock %} {% block body %} -

{% trans "Alphabetical listing of works" %}

+

{% trans "Listing of all works" %}

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

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

{{ first_letter }}

-
    - {% for book in group %} -
  1. {{ book.title }}
  2. - {% endfor %} -
-
- {% 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 %}
{% endblock %} \ No newline at end of file