{% extends "base.html" %} {% load i18n dv_filters %} {% block head_title %}{% blocktrans with year=export_period.year month_start=export_period.season|season_month_start month_end=export_period.season|season_month_end %}Statistiques des mois {{ month_start }} à {{ month_end }} {{ year }}{% endblocktrans %}{% endblock %} {% block content %} {% include 'info/_season_nav.html' with nav_url=nav_url previous_period=previous_period next_period=next_period only %} {% with season=export_period.season year=export_period.year %} {% if dataset %}

{{ dataset_title }}

{% include 'export_buttons.html' with noprint=True exporturl=dataset_exporturl year=year season=season only %} {% for entry in dataset.headers %} {% endfor %} {% for row in dataset %} {% for entry in row %} {% if forloop.first %} {% else %} {% endif %} {% endfor %} {% endfor %}
{{ entry|default:'' }}
{{ entry|ifcanton_abbr|default:'' }}{{ entry|default:'' }}
{% else %}

{% blocktrans with year=export_period.year month_start=export_period.season|season_month_start month_end=export_period.season|season_month_end %}Statistiques des mois {{ month_start }} à {{ month_end }} {{ year }}{% endblocktrans %}

{% endif %} {% endwith %} {% endblock %}