{% extends "base.html" %} {% block title %} Authors {% endblock title %} {% block headers %} {% if initial %}

Authors {{ initial }}

{% elif request.GET.q %}

Search authors for "{{ request.GET.q }}"

{% else %}

Authors with most contributions

{% endif %} {% endblock headers %} {% block years %} {% for i in initials %} {{ i }} {% endfor %} {% endblock years %} {% block content %} {% endblock %}