X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/2f1c330e555c24deb17b7d6018b59c52dab7aafd..27645bc61a8cb186116d6410217011dd755823f2:/wolnelektury/templates/catalogue/book_list.html diff --git a/wolnelektury/templates/catalogue/book_list.html b/wolnelektury/templates/catalogue/book_list.html index f4f575c7f..b4336d32b 100644 --- a/wolnelektury/templates/catalogue/book_list.html +++ b/wolnelektury/templates/catalogue/book_list.html @@ -1,35 +1,44 @@ {% 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 extrahead %} - -{% endblock %} +{% block titleextra %}{% trans "Listing of all works" %}{% endblock %} {% block body %} -

Alfabetyczny spis utworów

-
-

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

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

{{ first_letter }}

-
    - {% for book in group %} -
  1. {{ book.title }}
  2. - {% endfor %} -
-
+

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

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