{% extends 'base.html' %} {% load i18n %} {% load catalogue_tags %} {% block settings %} {% load title %} {% trans 'Półka' as title %} {% title title %} {% endblock %} {% block main %}

{% trans "Półka" %}

{% trans "Sortuj:" %}

 

{% if suggest %}
{% with list_type='book' %} {% for tag in suggest %} {{ tag }} {% endfor %} {% endwith %}
{% endif %}
{% for book in books %} {% include "catalogue/book_box.html" %} {% endfor %}
{% endblock %}