{% extends request.EXPERIMENTS.layout|yesno:"2022/base.html,base/base.html" %} {% load i18n %} {% load catalogue_tags %} {% block titleextra %}{% trans "Recent publications" %}{% endblock %} {% block bodyid %}recent-list{% 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 %}

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