{% 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 %}
{% for author in all_authors|sort(reverse = True, attribute = 'articles') %}
{{ author.name }}
{{ author.articles }} article{{ 's' if author.articles > 1 else '' }}
{% endfor %}
{% endblock %}