{% extends 'base.html.twig' %} {% block javascripts %} {{ parent() }} {% endblock %} {% block stylesheets %} {{ parent() }} {% endblock %} {% block body %}
{% for user in users|filterUsersByPL(plId, users) %} {% if user is defined and user.nomPrenom is defined and user.nomPrenom != "" %}
{{ user.nomPrenom }}

{% if is_granted('ROLE_ADMIN') or is_granted('ROLE_SUPER_ADMIN') %} {% if user.isAdmin is defined %} {% if user.isAdmin %} Admin {% else %} Admin {% endif %} {% endif %} {% endif %} {% if is_granted('ROLE_SUPER_ADMIN') %} {% if user.isSuperAdmin is defined %} {% if user.isSuperAdmin %} Superadmin {% else %} Superadmin {% endif %} {% endif %} {% endif %}

{% endif %} {% endfor %}
{% endblock %}