{% extends 'base.html.twig' %} {% block title %}User Profile{% endblock %} {% block body %}

Gestion Utilisateurs

Ajouter un utilisateur
{% for org in usersByOrganization %}

{{ org.organization_name|title }}

{% for user in org.users %} {% endfor %} {% if org.users|length == 0 %} {% endif %}
Picture Surname Name Email Visualiser
{% if user.pictureUrl %} User profile pic {% endif %} {{ user.surname }} {{ user.name }} {{ user.email }} {{ ux_icon('fa6-regular:eye', {height: '30px', width: '30px'}) }}
Aucun utilisateur trouvé.
{% endfor %}
{% endblock %}