Changed some styles.
[wolnelektury.git] / templates / catalogue / book_list.html
1 {% extends "base.html" %}
2 {% load catalogue 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             $('#id_q').labelify({labelledClass: 'blur'});
12             $('#book-list .group').addClass('dontsplit');
13             $('#book-list').columnize({columns: 3});
14         });
15     </script>
16 {% endblock %}
17
18 {% block body %}
19     <h1>Alfabetyczny spis utworów</h1>
20     <form action="." method="GET" accept-charset="utf-8" id="search-form">
21         <ol>
22             <li class="book-title">Alfabetyczny spis utworów | <a href="{% url main_page %}">x</a></li>
23             <li>{{ form.q }} <input type="submit" value="Szukaj" /></li>
24         </ol>
25     </form>
26     
27     <div id="book-list">
28         {% for first_letter, group in books_by_first_letter.items %}
29         <div class="group">
30             <h2>{{ first_letter }}</h2>
31             <ol>
32             {% for book in group %}
33                 <li><a href="{{ book.get_absolute_url }}">{{ book.title }}</a></li>
34             {% endfor %}
35             </ol>
36         </div>
37         {% endfor %}    
38     </div>
39 {% endblock %}