1 {% extends "2022/base.html" %}
3 {% load catalogue_tags reporting_stats %}
6 {% block titleextra %}{% trans "Catalogue" %}{% endblock %}
8 {% block bodyid %}catalogue-catalogue{% endblock %}
10 {% block body %}{% block main %}
11 <h1>{% trans "All works" %}</h1>
12 <div class="normal-text catalogue-catalogue l-container">
13 <p>W naszej bibliotece mamy {% count_books %} utworów zebranych w {% count_books_root %} tomów.</p>
16 <a href="{% url 'reporting_catalogue_pdf' %}">
17 {% trans "Download the catalogue in PDF format." %}
21 <h2>{% trans "Literature" %}</h2>
22 {% plain_list books by_author=True paged=False initial_blocks=True %}
24 <h2>{% trans "Collections" %}</h2>
25 {% plain_list collections paged=False %}
27 <h2>{% trans "Art" %}</h2>
28 {% plain_list pictures by_author=True paged=False initial_blocks=True %}
30 {% endblock %}{% endblock %}