{% extends "base.html" %} {% block content %}
{% for year, y_articles in dates | groupby("date.year") | reverse %}
{{ year }}
{% for month, m_articles in y_articles | groupby("date.month") | reverse %}
{% if month == 1 %}Janvier{% elif month == 2 %}Février {% elif month == 3
%}Mars {% elif month == 4 %}Avril {% elif month == 5 %}Mai {% elif month
== 6 %}Juin {% elif month == 7 %}Juillet {% elif month == 8 %}Aout {% elif
month == 9 %}Septembre {% elif month == 10 %}Octobre {% elif month == 11
%}Novembre {% elif month == 12 %}Décembre {% endif %}
{% for article in m_articles %}
-
{{ CATEGORIES_DESCRIPTION.get(article.category)[0] }}: {{ article.title
}}
{% endfor %} {% endfor %}
{% endfor %}
{% endblock %}