{% load i18n %}{% load static %} {% if templates %}
{% for grouper in templates %}
{{grouper.grouper}}
{{grouper.list|length}}
{% if grouper.grouper %} {% endif %}
{% trans "Question" %}
{% trans "Type" %}
{% trans "Actions" %}
{% for question in grouper.list %}
{{question.question}}
{{question.get_type_display}}
{% endfor %}
{% if grouper.list %}
{% trans "Page" %} {{ grouper.list.number }} {% trans "of" %} {{ grouper.list.paginator.num_pages }}.
{% endif %}
{% endfor %}
{% trans "Page" %} {{ templates.number }} {% trans "of" %} {{ templates.paginator.num_pages }}.
{% else %}
Page not found. 404.
{% trans "No template groups have been established yet." %}
{% endif %}