{% extends 'base_agenda.html.twig' %} {% import 'macros/macro.html.twig' as macro %} {% block title %} {{ parent() }} Gestion des utilisateurs clients {% endblock %} {% block stylesheets %} {{ parent() }} {% endblock %} {% block body %} {{ parent() }}

Liste des utilisateurs

{% for user in users %} {% endfor %}
Informations
Nom : {{ user.name }}
Prénom : {{ user.firstname }}
Email : {{ user.email }}
Nom du client : {{ user.customerName}}
Agence du client : {{ user.Agence}}
{% endblock %} {% block modal %} {% endblock %} {% block javascripts %} {{ parent() }} {% endblock %}