{% extends 'admin_base.html.twig' %} {% block body %}

Les Utilisateurs

+ Nouveau
{% for a in users %} {% endfor %}
Image Nom Email Groups Role Etat Action
{% if a.file_name %} contact-img {% else %} contact-img {% endif %} {{ a.getName() }} {{ a.getEmail() }} {% for c in a.getGroups() %} {{ c.getName() }} {% endfor %} {{ a.isAdmin() ? "Administrateur" : "Utilisateur" }} {{ a.isEnabled() ? "Active" :"Désactivé" }}
{% endblock %}