{% extends 'base.html.twig' %} {% block title %}Administration{% endblock %} {% block stylesheets %} {{ parent() }} {% endblock %} {% block titlePage %}

Administration : Users

{% endblock %} {% block main %}
{# ADD BUTTON #}
Ajouter un utilisateur
{% for user in users %} {% if user.uripp %} photo {% else %} {% endif %}
{{ user.pseudo }}
{% if user.admin %} admin {% else %} user {% endif %}
{% if app.user and app.user.isAncestorOf(user) %} modifiable {% else %} non modifiable {% endif %}
{% endfor %}
{% endblock %}