{% load i18n %}
{% regroup articles by section as grouped_articles %} {% for section, section_articles in grouped_articles %} {% if level == "deep" %}

{% 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 == "deep" %} {% include "elements/journal/box_article.html" with article=article level=level %} {% else %} {% include "elements/journal/box_article.html" with article=article level="shallow" %} {% endif %} {% endfor %} {% endfor %}