{% extends "news.html" %} {% load thumbnails %} {% load paniktags %} {% block title %}News - Archives{% endblock %} {% block nav %} {% news_nav with klass="archives" %} {% 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 %}
Sorry, no result with your query!
{% 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 %}