{% extends host_template %} {% load i18n fb_versions cyclope_utils dbgettext_tags %} {% block content %}
{% 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 %} {% if page %} {% if view_options.sort_by == "ALPHABETIC" %} {% include 'cyclope/alphabetical_pagination_block.html' %} {% else %} {% include 'cyclope/pagination_block.html' %} {% endif %} {% endif %} {% endblock content %}