{% extends "base.html" %} {% load i18n %} {% load catalogue_tags chunks %} {% block bodyid %}book-a-list{% endblock %} {% block title %}{% trans "Alphabetical listing of works on" %}Alfabetyczny spis utworów w WolneLektury.pl{% endblock %} {% block body %}

Alfabetyczny spis utworów

{{ form.q }} {% trans "or" %} {% trans "return to main page" %}

{% for first_letter, group in books_by_first_letter.items %}

{{ first_letter }}

    {% for book in group %}
  1. {{ book.title }}
  2. {% endfor %}
{% endfor %}
{% endblock %}