{% extends "base.html" %} {% load i18n %} {% load bootstrap3 %} {% load dv_filters %} {% block head_title %}{% blocktrans with year=year %}Configurations cantonales pour {{ year }}{% endblocktrans %}{% endblock %} {% block content %}

{% blocktrans with year=year %}Configurations cantonales pour {{ year }}{% endblocktrans %}

{% for setting in settings %} {% if forloop.first %} {% endif %} {% if forloop.last %}
{% trans "Canton" %} {% trans "Coût par vélo" %} {% trans "Coût par participant" %}
{{ setting.canton|canton_abbr }} {{ setting.cost_per_bike }} {{ setting.cost_per_participant }} {% if user|can:'settings_crud' %} {% endif %}
{% endif %} {% endfor %} {% if user|can:'settings_crud' %}
{% trans "Créer une nouvelle configuration" %}
{% endif %} {% endblock %}