Locatizations.
[wolnelektury.git] / src / catalogue / templates / catalogue / catalogue.html
1 {% extends "base.html" %}
2 {% load i18n %}
3 {% load catalogue_tags reporting_stats %}
4
5
6 {% block titleextra %}{% trans "Katalog" %}{% endblock %}
7
8 {% block bodyid %}catalogue-catalogue{% endblock %}
9
10 {% block body %}{% block main %}
11   <h1>{% trans "Wszystkie utwory" %}</h1>
12   <div class="normal-text catalogue-catalogue l-container">
13     <p>
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.
18       {% endblocktrans %}
19     </p>
20
21     <p>
22       <a href="{% url 'reporting_catalogue_pdf' %}">
23         {% trans "Pobierz katalog w formacie PDF." %}
24       </a>
25     </p>
26
27     <h2>{% trans "Literatura" %}</h2>
28     {% plain_list books by_author=True paged=False initial_blocks=True %}
29
30     <h2>{% trans "Kolekcje" %}</h2>
31     {% plain_list collections paged=False %}
32
33     <h2>{% trans "Sztuka" %}</h2>
34     {% plain_list pictures by_author=True paged=False initial_blocks=True %}
35   </div>
36 {% endblock %}{% endblock %}