{% extends "base.html" %} {% load i18n account dv_filters %} {% block head_title %}{{ page_title }}{% endblock %} {% block content %} {% if season %}

{{ season.begin|date:"F Y"|title }} - {{ season.end|date:"F Y" }} ({{ season.cantons|cantons_abbr:False|join:", " }})

{% endif %}

{{ page_title }}

{% for user in users %} {% endfor %}
{# Attributs #} {% trans "Prénom" %} {% trans "Nom" %} {% trans "Natel" %} {% trans "Email" %}
{{ user.profile.formation_icon|safe }} {{ user.profile.actor_icon|default:"" }} {{ user.first_name }} {{ user.last_name }} {% if user.profile.natel %}{{ user.profile.natel|tel_link }}{% elif user.profile.phone %}{{ user.profile.phone|tel_link }}{% endif %} {% if user.email %}{{ user.email }}{% endif %}
{% include 'export_buttons.html' with printonly=True %} {% endblock %}