{% extends 'base.html.twig' %} {% block title %}admin - CompanyInformation{% endblock %} {% block body %}
{% include '/management/top_menu.html.twig' %}
{% for message in app.flashes('success') %}
{{ message }}
{% endfor %} {% for message in app.flashes('warning') %}
{{ message }}
{% endfor %}
{% include '/management/Users/vertical_menu.html.twig' %}
Gestion des utilisateurs
Liste des utilisateurs
{% for user in users %} {% endfor %}
ID Nom - Prénom Etablissement lié Equipe liée Actif Action
{{ user.id }} {{ user.username }} {{ user.agencyParticipants|length > 0 ? user.agencyParticipants|length > 1 ? "Plusieurs établissements" : user.agencyParticipants[0].agency.name : "Lié a aucun établissement" }} {{ user.teamParticipants|length > 0 ? user.teamParticipants[0].team.name : "Aucune équipe" }}
{% endblock %} {% block javascripts %} {% endblock %}