1 {% extends "base.html" %}
3 {% load catalogue_tags reporting_stats %}
6 {% block titleextra %}{% trans "Katalog" %}{% endblock %}
8 {% block bodyid %}catalogue-catalogue{% endblock %}
10 {% block body %}{% block main %}
11 <h1>{% trans "Wszystkie utwory" %}</h1>
12 <div class="normal-text catalogue-catalogue l-container">
14 {% count_books as nbooks %}
15 {% count_books_root as ntomes %}
16 {% blocktrans trimmed %}
17 W naszej bibliotece mamy {{ nbooks }} utworów zebranych w {{ ntomes }} tomów.
22 <a href="{% url 'reporting_catalogue_pdf' %}">
23 {% trans "Pobierz katalog w formacie PDF." %}
27 <h2>{% trans "Literatura" %}</h2>
28 {% plain_list books by_author=True paged=False initial_blocks=True %}
30 <h2>{% trans "Kolekcje" %}</h2>
31 {% plain_list collections paged=False %}
33 <h2>{% trans "Sztuka" %}</h2>
34 {% plain_list pictures by_author=True paged=False initial_blocks=True %}
36 {% endblock %}{% endblock %}