{% extends 'base.html' %} {% load i18n %} {% load catalogue_tags %} {% load choose_cites from social_tags %} {% block breadcrumbs %} {% trans "Katalog" %} {% if tags %} {{ main_tag.get_category_display|title }} {% endif %} {% endblock %} {% block main %}
{% if main_tag.photo %}
{{ main_tag.name }}
{% endif %}

{% if main_tag %} {{ main_tag.name }} {% else %} {{ title }} {% endif %}

{% for tag in tags %} {% if tag is not main_tag %} {{ tag }} {% endif %} {% endfor %}
{% trans "Sortuj:" %}

{% nice_title_from_tags tags categories %}

{% if suggest %}
{% for tag in suggest %} {{ tag }} {% endfor %}
{% endif %}
{% for book in object_list %} {% include "catalogue/book_box.html" %} {% endfor %}
{% if tags %}
{% with tag=main_tag %} {% include 'catalogue/author_box.html' %} {% endwith %} {% choose_cites 3 author=main_tag as cites %} {% if cites %}
{% for fragment in cites %}
{% include "catalogue/fragment_slider_box.html" %}
{% endfor %}
{% endif %}
{% endif %} {% endblock %}