1 {% extends "base.html" %}
3 {% load catalogue_tags chunks %}
5 {% block bodyid %}book-a-list{% endblock %}
7 {% block title %}{% trans "Listing of all works on WolneLektury.pl" %}{% endblock %}
10 <h1>{% trans "Listing of all works" %}</h1>
11 <form action="{% url search %}" method="GET" accept-charset="utf-8" id="search-form">
12 <p>{{ form.q }} <input type="submit" value="{% trans "Search" %}" /> <strong>{% trans "or" %}</strong> <a href="{% url main_page %}">{% trans "return to main page" %}</a></p>
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>
28 {% book_tree orphans books_by_parent %}
29 {% for author, group in books_by_author.items %}
31 <a name="{{ author.slug }}">
33 <h2><a href="{{ author.get_absolute_url }}">{{ author }}</a></h2>
34 {% book_tree group books_by_parent %}