X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/2f1c330e555c24deb17b7d6018b59c52dab7aafd..f17e5ab1f46f52b071f71c799dfa4c755f7c407e:/wolnelektury/templates/catalogue/book_list.html diff --git a/wolnelektury/templates/catalogue/book_list.html b/wolnelektury/templates/catalogue/book_list.html index f4f575c7f..f385a19f8 100644 --- a/wolnelektury/templates/catalogue/book_list.html +++ b/wolnelektury/templates/catalogue/book_list.html @@ -1,35 +1,39 @@ {% 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 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 %} +
{% endblock %}