X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/357027375ff8867f42ca34bcbfb5a78b5b185fc3..a9226097c8eea0591fd3249f62a71becc6d2be93:/src/catalogue/templates/catalogue/recent_list.html diff --git a/src/catalogue/templates/catalogue/recent_list.html b/src/catalogue/templates/catalogue/recent_list.html old mode 100755 new mode 100644 index 28a96b831..70a5f5c5a --- a/src/catalogue/templates/catalogue/recent_list.html +++ b/src/catalogue/templates/catalogue/recent_list.html @@ -1,22 +1,32 @@ -{% extends "base.html" %} +{% extends "2022/base.html" %} {% load i18n %} {% load catalogue_tags %} -{% block titleextra %}{% trans "Recent publications" %}{% endblock %} - -{% block bodyid %}recent-list{% endblock %} +{% block settings %} + {% load title %} + {% trans "Recent publications" as title %} + {% title title %} +{% endblock %} -{% block body %} +{% block main %} +

{% trans "Recent publications" %}

+
- {% url 'recent_audiobooks_list' as a %} - {% url 'recent_daisy_list' as d %} -

- {% blocktrans %}You can also see recent audiobooks - and recent DAISY files.{% endblocktrans %} -

+ {% url 'recent_audiobooks_list' as a %} + {% url 'recent_daisy_list' as d %} +
+

+ {% blocktrans %}You can also see recent audiobooks + and recent DAISY files.{% endblocktrans %} +

+
-
- {% work_list object_list %} +
+
+ {% for book in object_list %} + {% include "catalogue/2022/book_box.html" %} + {% endfor %}
+
{% endblock %}