{% extends host_template %} {% load i18n fb_versions cyclope_utils dbgettext_tags %} {% block content %} {% if CYCLOPE_THEME_TYPE == 'bootstrap' %}

{% trans "Authors" %}

{% for author in author_list %} {% with current_object=author %}
{% if current_object.image %}
{% else %}
{% endif %}

{{ current_object.name }} {% if current_object.origin %} {{ current_object.origin }} {% endif %}

{% if current_object.notes %}
{{ current_object.notes|smart_style }}
{% endif %}

{% endwith %} {% endfor %} {% elif CYCLOPE_THEME_TYPE == 'classic' %}
{% trans "List of Authors" %}
{% for author in author_list %} {% with current_object=author %}

{{ current_object.name }}

{% if current_object.image %}
{% endif %} {% if current_object.notes %}
{{ current_object.notes|smart_style }}
{% endif %} {% if current_object.origin %}
{{ current_object.origin }}
{% endif %}
{% endwith %} {% endfor %} {% endif %} {% if page %} {% if view_options.sort_by == "ALPHABETIC" %} {% include 'cyclope/alphabetical_pagination_block.html' %} {% else %} {% include 'cyclope/pagination_block.html' %} {% endif %} {% endif %} {% endblock content %}