Gestion Utilisateurs
{% if is_granted('ROLE_SUPER_ADMIN') %}
Ajouter un utilisateur
{% endif %}
{% if is_granted('ROLE_SUPER_ADMIN') or is_granted('ROLE_ADMIN') %}
{% if usersByOrganization|length == 0 %}
{% else %}
{% for org in usersByOrganization %}
{% include 'user/userList.html.twig' with {
title: org.name,
organizationId: org.id|default(null),
users: org.users
} %}
{% endfor %}
{% endif %}
{% else %}