#817: audiobooks, daisy collections
[wolnelektury.git] / wolnelektury / templates / catalogue / book_list.html
index 7d49cff..2791ef2 100644 (file)
@@ -7,15 +7,29 @@
 {% block title %}{% trans "Listing of all works on WolneLektury.pl" %}{% endblock %}
 
 {% block body %}
-    <h1>{% trans "Listing of all works" %}</h1>
+    <h1>{% block book_list_header %}{% trans "Listing of all works" %}{% endblock %}</h1>
     <form action="{% url search %}" method="GET" accept-charset="utf-8" id="search-form">
         <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>
     </form>
-
+    <a name="top">
+    <div id="book-list-nav">
+        {% trans "Table of Content" %}
+        {% for index, authors in books_nav.items %}
+                <ul>
+                    <li><a class="book-list-index" href="#">{{ index|upper }}</a></li>
+                    <ul class="book-list-show-index">
+                    {% for author in authors %}
+                        <li><a href="#{{ author.slug }}">{{ author }}</a></li>
+                    {% endfor %}
+                    </ul>
+                </ul>
+        {% endfor %}    
+    </div>
     <div id="book-list">
         {% book_tree orphans books_by_parent %}
         {% for author, group in books_by_author.items %}
             {% if group %}
+                <a name="{{ author.slug }}">
                 <div class="group">
                     <h2><a href="{{ author.get_absolute_url }}">{{ author }}</a></h2>
                     {% book_tree group books_by_parent %}
@@ -23,4 +37,7 @@
             {% endif %}
         {% endfor %}
     </div>
-{% endblock %}
\ No newline at end of file
+    <div id="book-list-up">
+        <p><a href="#top">{% trans "↑ top ↑" %}</a></p>
+    </div>
+{% endblock %}