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 <h1>Alfabetyczny spis utworów</h1>
10 <form action="{% url search %}" method="GET" accept-charset="utf-8" id="search-form">
11 <p>{{ form.q }} <input type="submit" value="Szukaj" /> <strong>lub</strong> <a href="{% url main_page %}">wróć do strony głównej</a></p>
15 {% for first_letter, group in books_by_first_letter.items %}
17 <h2>{{ first_letter }}</h2>
19 {% for book in group %}
20 <li><a href="{{ book.get_absolute_url }}">{{ book.title }}</a></li>