935d232fa989477f42e1c33ce4c1f04e50025dbc
[wolnelektury.git] / src / catalogue / templates / catalogue / catalogue.html
1 {% extends request.EXPERIMENTS.layout|yesno:"2022/base.html,base/base.html" %}
2 {% load i18n %}
3 {% load catalogue_tags %}
4
5
6 {% block titleextra %}{% trans "Catalogue" %}{% endblock %}
7
8 {% block bodyid %}catalogue-catalogue{% endblock %}
9
10 {% block body %}{% block main %}
11   <h1>{% trans "All works" %}</h1>
12   <div class="normal-text catalogue-catalogue l-container">
13     <p>
14       <a href="{% url 'reporting_catalogue_pdf' %}">
15         {% trans "Download the catalogue in PDF format." %}
16       </a>
17     </p>
18
19     <h2>{% trans "Literature" %}</h2>
20     {% plain_list books by_author=True paged=False initial_blocks=True %}
21
22     <h2>{% trans "Collections" %}</h2>
23     {% plain_list collections paged=False %}
24
25     <h2>{% trans "Art" %}</h2>
26     {% plain_list pictures by_author=True paged=False initial_blocks=True %}
27   </div>
28 {% endblock %}{% endblock %}