{% extends "news.html" %} {% load paniktags i18n %} {% block title %}{% trans 'News' %} - Archives{% endblock %} {% block nav %}
{% if facets.fields.news_categories %} {% endif %} {% if facets.fields.tags %} {% endif %}
{% endblock %} {% block main %}
{% for category in selected_news_categories %} {% endfor %} {% for tag in selected_tags %} {% endfor %} {{ form.as_table }}
{% if not page.object_list %}
Manque de pot, pas de résultats à cette recherche !
{% endif %} {% if page.has_previous %}
« Résultats précédénts
{% endif %}
{% if page.object_list %} {% regroup page.object_list by date|date:"F Y"|capfirst as month_list %}
{% for month in month_list %}
> {{ month.grouper }}
    {% for result in month.list %}
  • {% with result.object as content %}{% news_inline %}{% endwith %}
  • {% endfor %}
{% endfor %}
{% endif %}
{% if page.has_next %}
Résultats suivants »
{% endif %}
{% endblock %}