{% extends "base.html" %} {% load i18n %} {% load bootstrap3 %} {% load dv_filters %} {% block head_title %}{% blocktrans with year=year|date:'Y' %}Validations cantonales mensuelles pour {{ year }}{% endblocktrans %}{% endblock %} {% block content %}

{% blocktrans with year=year|date:'Y' %}Validations cantonales mensuelles pour {{ year }}{% endblocktrans %}

{% for m_i, month in months.items %} {% endfor %} {% for canton, statuses in timesheets_statuses_by_canton.items %} {% for month, status in statuses.items %} {% endfor %} {% endfor %}
{% trans "Canton" %}{{ month }}
{{ canton|canton_abbr:False }} {% if status is not None %} {% for mcv in mcvs %} {% if mcv.canton == canton and mcv.date.month == month %} {% if mcv.validated %} {% include "ok.html" %} {% else %} {% endif %} {% endif %} {% endfor %} {% endif %}
{% endblock %}