{% extends "docbow/base_user.html" %} {% load uni_form_tags %} {% load i18n %} {% block title %} {% trans "Delegations" %} {% endblock %} {% block main-column %} {% if delegations %}
{% csrf_token %}

{% trans "Delegations" %}

{% for delegation in delegations %} {% endfor %}
Prénom Nom Courriel Identifiant
{{ delegation.to.first_name }} {{ delegation.to.last_name }} {{ delegation.to.email }} {{ delegation.to.username }}
{% endif %}

{% trans "Create a new delegation" %}

{% with form.helper as helper %} {% uni_form form helper %} {% endwith %}
{% endblock %}