{% extends 'base.html.twig' %} {% block body %}
{% if is_granted("ROLE_ADMIN") %}

Gestion Utilisateur

{% if is_granted("ROLE_SUPER_ADMIN") %} Supprimer {% endif %} {% if user.active %} Désactiver {% else %} Activer {% endif %}
{% endif %} {% include 'user/userInformation.html.twig' %} {% if orgs|length >1 %}

Vos applications

{% elseif orgs|length == 1 %} {% for org in orgs %}

{{ org.name }}

{% endfor %} {% else %}

Aucune application

{% endif %}
{% for uoa in uoas %} {% include 'user/application/information.html.twig' %} {% endfor %}
{% endblock %} {% block title %} {% endblock %}