Merge branch 'production'
[wolnelektury.git] / wolnelektury / templates / catalogue / book_list.html
1 {% extends "base.html" %}
2 {% load i18n %}
3 {% load catalogue_tags chunks %}
4
5 {% block bodyid %}book-a-list{% endblock %}
6
7 {% block title %}{% trans "Listing of all works on WolneLektury.pl" %}{% endblock %}
8
9 {% block body %}
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>
13     </form>
14     <a name="top">
15     <div id="book-list-nav">
16         {% trans "Table of Content" %}
17         {% for index, authors in books_nav.items %}
18                 <ul>
19                     <li><a class="book-list-index" href="#">{{ index|upper }}</a></li>
20                     <ul class="book-list-show-index">
21                     {% for author in authors %}
22                         <li><a href="#{{ author.slug }}">{{ author }}</a></li>
23                     {% endfor %}
24                     </ul>
25                 </ul>
26         {% endfor %}    
27     </div>
28     <div id="book-list">
29         {% book_tree orphans books_by_parent %}
30         {% for author, group in books_by_author.items %}
31             {% if group %}
32                 <a name="{{ author.slug }}">
33                 <div class="group">
34                     <h2><a href="{{ author.get_absolute_url }}">{{ author }}</a></h2>
35                     {% book_tree group books_by_parent %}
36                 </div>
37             {% endif %}
38         {% endfor %}
39     </div>
40     <div id="book-list-up">
41         <p><a href="#top">{% trans "↑ top ↑" %}</a></p>
42     </div>
43 {% endblock %}