{% extends 'admin/base.html.twig' %} {% block title %}Utilisateurs{% endblock %} {% block body %}
{% include 'include/side_menu.html.twig' %}
{% include 'include/top_menu.html.twig' %}

Utilisateurs

{% for user in users %} {% if user.client is not null %} {% else %} {% endif %} {% endfor %}
Nom Prénom Role Client Action
{{ user.lastname }} {{ user.username }} {{ user.roles | first }}{{ user.client.name }}Aucun
{% endblock %}