X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/98062d2158ebe1f734d811691ab15e6887684281..c879af9dad38cf87b7c0d4669739ad2cffeff722:/src/catalogue/templates/catalogue/catalogue.html diff --git a/src/catalogue/templates/catalogue/catalogue.html b/src/catalogue/templates/catalogue/catalogue.html index 4494eff10..278029b5c 100644 --- a/src/catalogue/templates/catalogue/catalogue.html +++ b/src/catalogue/templates/catalogue/catalogue.html @@ -1,30 +1,33 @@ -{% extends request.EXPERIMENTS.layout|yesno:"2022/base.html,base/base.html" %} +{% extends "base.html" %} {% load i18n %} {% load catalogue_tags reporting_stats %} -{% block titleextra %}{% trans "Catalogue" %}{% endblock %} +{% block titleextra %}{% trans "Katalog" %}{% endblock %} {% block bodyid %}catalogue-catalogue{% endblock %} {% block body %}{% block main %} -

{% trans "All works" %}

+

{% trans "Wszystkie utwory" %}

-

W naszej bibliotece mamy {% count_books %} utworów zebranych w {% count_books_root %} tomów.

+

+ {% count_books as nbooks %} + {% count_books_root as ntomes %} + {% blocktrans trimmed %} + W naszej bibliotece mamy {{ nbooks }} utworów zebranych w {{ ntomes }} tomów. + {% endblocktrans %} +

- {% trans "Download the catalogue in PDF format." %} + {% trans "Pobierz katalog w formacie PDF." %}

-

{% trans "Literature" %}

+

{% trans "Literatura" %}

{% plain_list books by_author=True paged=False initial_blocks=True %} -

{% trans "Collections" %}

+

{% trans "Kolekcje" %}

{% plain_list collections paged=False %} - -

{% trans "Art" %}

- {% plain_list pictures by_author=True paged=False initial_blocks=True %}
{% endblock %}{% endblock %}