{% load combo %} {% if not json.err and not plateforme.err and plateforme.data %} {% with data=json.data %}

{{ plateforme.data.name }}

Coordination

Liste des coordonateurs

Accompagnateurs actifs

+ Ajouter un accompagnateur

{% for acc in data %} {% if acc.role != "Coordonnateur" and acc.statut == 'Actif' %} {% endif %} {% endfor %}
Nom Prénom Courriel Téléphone Coordination
{{ acc.nom|default:"" }} {{ acc.prenom|default:"" }} {% if acc.email %}{{ acc.email }}{% endif %} {% if acc.tel %}{{ acc.tel }}{% endif %} ✎ Modifier

Accompagnateurs désactivés

{% for acc in data %} {% if acc.role != "Coordonnateur" and acc.statut != 'Actif' %} {% endif %} {% endfor %}
Nom Prénom Courriel Téléphone Coordination
{{ acc.nom|default:"" }} {{ acc.prenom|default:"" }} {% if acc.email %}{{ acc.email }}{% endif %} {% if acc.tel %}{{ acc.tel }}{% endif %} ✎ Modifier
{% endwith %} {% endif %}