{% load i18n %}
{% for chapter in chapters %}
{{ chapter.name }}
{{ copyright }}
{% trans "Modifications:" %}
{% for author, years in chapter.authors %}
{{author.username}} - {{ author.first_name }} {{ author.last_name }}
{% for year in years %}
{{year}}{% if not forloop.last %}, {% endif %}
{% endfor %}
{% endfor %}