{% load i18n %}
{% regroup articles by section as grouped_articles %}
{% for section, section_articles in grouped_articles %}
{% if level == "issuepage" %}
{% if section.plural and section_articles|length >= 2 %}
{{ section.plural }}
{% else %}
{{ section.name }}
{% endif %}
{% else %}
{% if section.plural and section_articles|length >= 2 %}
{{ section.plural }}
{% else %}
{{ section.name }}
{% endif %}
{% endif %}
{% for article in section_articles %}
{% if level == "issuepage" %}
{% include "elements/article_listing.html" with article=article level=level %}
{% else %}
{% include "elements/article_listing.html" with article=article level="deep" %}
{% endif %}
{% endfor %}
{% endfor %}