1 {% extends "base.html" %}
3 {% load catalogue_tags chunks %}
5 {% block bodyid %}book-a-list{% endblock %}
7 {% block titleextra %}{% trans "Listing of all works" %}{% endblock %}
10 <h1>{% block book_list_header %}{% trans "Listing of all works" %}{% endblock %}</h1>
12 <div class="column-left">{% block book_list_info %}{% endblock %}</div><div style='clear:both;'></div>
14 <div id="book-list-nav">
15 {% trans "Table of Content" %}
16 {% for index, authors in books_nav.items %}
18 <li><a class="book-list-index" href="#">{{ index|upper }}</a></li>
19 <ul class="book-list-show-index">
20 {% for author in authors %}
21 <li><a href="#{{ author.slug }}">{{ author }}</a></li>
29 {% book_tree orphans books_by_parent %}
30 {% for author, group in books_by_author.items %}
32 <a name="{{ author.slug }}">
34 <h2><a href="{{ author.get_absolute_url }}">{{ author }}</a></h2>
35 {% book_tree group books_by_parent %}
41 <div id="book-list-up">
42 <p><a href="#top">{% trans "↑ top ↑" %}</a></p>