{% extends "base.html" %} {% load i18n %} {% load catalogue_tags chunks %} {% block bodyid %}book-a-list{% endblock %} {% block titleextra %}{% trans "Listing of all works" %}{% endblock %} {% block body %}

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