{% extends "base.html" %} {% block title %} All authors {% endblock %} {% block top_center %}

Authors

{% endblock %} {% block content %} {% set all_authors = [] %} {% for author, articles in authors %} {% if all_authors.append({'name': author.name, 'url': author.url, 'articles': articles|length()}) %}{% endif %} {% endfor %}
{# Sort by number of articles, then alphabetically #} {% for author in all_authors|sort(attribute='name')|sort(reverse=True, attribute='articles') %}
{{ author.name }}
{{ author.articles }} article{{ 's' if author.articles > 1 else '' }}
{% endfor %}
{% endblock %}