X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/5abc88f0d2ad3036dd526fbff5f0241f1d6480e1..a9226097c8eea0591fd3249f62a71becc6d2be93:/src/catalogue/templates/catalogue/recent_audiobooks_list.html diff --git a/src/catalogue/templates/catalogue/recent_audiobooks_list.html b/src/catalogue/templates/catalogue/recent_audiobooks_list.html index b600936f8..14ac34273 100644 --- a/src/catalogue/templates/catalogue/recent_audiobooks_list.html +++ b/src/catalogue/templates/catalogue/recent_audiobooks_list.html @@ -1,25 +1,23 @@ -{% extends request.EXPERIMENTS.layout|yesno:"2022/base.html,base/base.html" %} +{% extends "2022/base.html" %} {% load i18n %} {% load catalogue_tags %} -{% block titleextra %}{% trans "Recent audiobooks" %}{% endblock %} +{% block settings %} + {% load title %} + {% trans "Recent audiobooks" as title %} + {% title title %} +{% endblock %} -{% block bodyid %}recent-list{% endblock %} +{% block main %} +
+

{% trans "Recent audiobooks" %}

+
-{% block body %}{% block main %} -

{% trans "Recent audiobooks" %}

- - {% if request.EXPERIMENTS.layout %} -
-
- {% for book in object_list %} - {% include "catalogue/2022/book_box.html" %} - {% endfor %} -
-
- {% else %} -
- {% work_list object_list %} +
+
+ {% for book in object_list %} + {% include "catalogue/2022/book_box.html" %} + {% endfor %}
- {% endif %} -{% endblock %}{% endblock %} +
+{% endblock %}