1 {% extends "base.html" %}
2 {% load catalogue_tags chunks %}
4 {% block bodyid %}book-a-list{% endblock %}
6 {% block title %}Alfabetyczny spis utworów w WolneLektury.pl{% endblock %}
9 <script type="text/javascript" charset="utf-8">
11 $('#book-list .group').addClass('dontsplit');
12 $('#book-list').columnize({columns: 3});
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>
24 {% for first_letter, group in books_by_first_letter.items %}
26 <h2>{{ first_letter }}</h2>
28 {% for book in group %}
29 <li><a href="{{ book.get_absolute_url }}">{{ book.title }}</a></li>