{% extends "base/base.html" %} {% load i18n %} {% load catalogue_tags social_tags %} {% block titleextra %}{% if tags %}{% title_from_tags tags %}{% elif list_type == 'gallery' %}{% trans "Art" %}{% elif list_type == 'audiobooks' %}{% trans "Audiobooks" %}{% else %}{% trans "Literature" %}{% endif %}{% endblock %} {% block bodyid %}tagged-object-list{% endblock %} {% block body %}

{% if tags %}{% html_title_from_tags tags %}{% endif %}

{% trans "Authors" %} {% trans "Epochs" %} {% trans "Genres" %} {% trans "Kinds" %} {% if theme_is_set %} {% trans "Themes" %} {% endif %}
{% inline_tag_list categories.author tags 'author' list_type=list_type %}
{% inline_tag_list categories.epoch tags 'epoch' list_type=list_type %}
{% inline_tag_list categories.genre tags 'genre' list_type=list_type %}
{% inline_tag_list categories.kind tags 'kind' list_type=list_type %}
{% if theme_is_set %}
{% inline_tag_list categories.theme tags 'theme' list_type=list_type %}
{% endif %}
{% if theme_is_set %} {% work_list object_list %} {% else %}
{% if object_list %} {% work_list best %} {% if tags %}

{% trans "All matching works" %}

{% else %} {% if list_type == 'audiobooks' %}

{% trans "Listing of all audiobooks" %}

{% else %}

{% trans "All works" %}

{% endif %} {% endif %} {% plain_list object_list by_author=True list_type=list_type %} {% if daisy %}

{% trans "DAISY files" %}

{% plain_list daisy by_author=True %} {% endif %} {% else %} {% trans "Sorry! Search cirteria did not match any resources." %} {% include "info/join_us.html" %} {% endif %}
{% if categories.theme and list_type != 'audiobooks' %}

{% trans "Motifs and themes" %}

{% plain_list categories.theme choice=tags list_type=list_type %} {% endif %} {% endif %} {% for tag in tags %} {% if tag.category != 'set' %}

{% trans tag.category as c %}{{ c|capfirst }}: {{ tag }}

{% if tag.has_description %} {{ tag.description|safe }} {% else %} {% trans "No description." %} {% endif %}
{% if tag.wiki_link %}
{{ tag }} {% trans "in Wikipedia" %}
{% endif %} {% if tag.culturepl_link %}
{{ tag }} {% trans "in Culture.pl" %}
{% endif %} {% endif %} {% endfor %} {% endblock %}