{% extends 'base.html.twig' %} {% block title %}Contacts de la commission {{ department.name }}{% endblock %} {% block body %}

Contacts de la commission {{ department.name }}

{% if department.userInCharge.picture %} Photo de {{ department.userInCharge.fullName }} {% else %} Photo par défaut {% endif %}

{{ department.userInCharge.fullName }}
Responsable de la commission

Voir la fiche
{% if not department.members.empty %} {% for user in department.members %}
{% if user.picture %} Photo de {{ user.fullName }} {% else %} Photo par défaut {% endif %}

{{ user.fullName }}
{% if department in user.departmentsInChargeOf %} Responsable de la commission

{% else %}
{% endif %} Voir la fiche
{% endfor %} {% endif %}
{% endblock %}