X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/5923c1d5a9adb03043d45cf47684825aaa1e6f93..5ea4ebb6aed109f6c6fff2d98f667abbddb0c4a0:/wolnelektury/templates/catalogue/book_list.html diff --git a/wolnelektury/templates/catalogue/book_list.html b/wolnelektury/templates/catalogue/book_list.html index 1f87217a6..be7045b88 100644 --- a/wolnelektury/templates/catalogue/book_list.html +++ b/wolnelektury/templates/catalogue/book_list.html @@ -1,26 +1,43 @@ {% 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

+

{% trans "Listing of all works" %}

-

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

+

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