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

Gestion Utilisateur

Désactiver
{% endif %} {% include 'user/userInformation.html.twig' %}

Organisations

{% if userOrganizations is empty %}

Aucune organisation associée à cet utilisateur.

{% elseif userOrganizations|length == 1 %} {% for organization in userOrganizations[0].apps %} {{ dump(userOrganizations) }} {# {% include 'user/application/information.html.twig' #} {# with {'application': application, 'roles' : } %} #} {% endfor %} {% else %} {% for organization in userOrganizations %} {% include 'user/organization/userOrganizationInformation.html.twig' with {'organization': organization.organization, 'roles': organization.roles, 'apps': organization.apps, 'uoId': organization.uoId} %} {% endfor %} {% endif %}
{% endblock %} {% block title %} {% endblock %}