Moved project files to wolnelektury directory.
[wolnelektury.git] / wolnelektury / templates / catalogue / book_list.html
1 {% extends "base.html" %}
2 {% load catalogue_tags chunks %}
3
4 {% block bodyid %}book-a-list{% endblock %}
5
6 {% block title %}Alfabetyczny spis utworów w WolneLektury.pl{% endblock %}
7
8 {% block extrahead %}
9     <script type="text/javascript" charset="utf-8">
10         $(function() {
11             $('#book-list .group').addClass('dontsplit');
12             $('#book-list').columnize({columns: 3});
13         });
14     </script>
15 {% endblock %}
16
17 {% block body %}
18     <h1>Alfabetyczny spis utworów</h1>
19     <form action="{% url search %}" method="GET" accept-charset="utf-8" id="search-form">
20         <p>{{ form.q }} <input type="submit" value="Szukaj" /> <strong>lub</strong> <a href="{% url main_page %}">wróć do strony głównej</a></p>
21     </form>
22     
23     <div id="book-list">
24         {% for first_letter, group in books_by_first_letter.items %}
25         <div class="group">
26             <h2>{{ first_letter }}</h2>
27             <ol>
28             {% for book in group %}
29                 <li><a href="{{ book.get_absolute_url }}">{{ book.title }}</a></li>
30             {% endfor %}
31             </ol>
32         </div>
33         {% endfor %}    
34     </div>
35 {% endblock %}