{% extends 'base.html.twig' %} {% block title %}Utilisateur : {{ user.name }} {{ user.firstName }}{% endblock %} {% block title_page %}Utilisateur : {{ user.name }} {{ user.firstName }}{% endblock %} {% block container_start %}

{% if is_granted("ROLE_ADMINISTRATION_USER") %} {% endif %} {% if is_granted("ROLE_ADMINISTRATION_USER") %} {% endif %}
{#image-product#}
Identifiant :
{{user.id}}
Nom :
{{user.name}}
Prénom :
{{user.firstName}}
Nom d'utilisateur :
{{user.username}}
Email :
{{user.email}}
Groupe :
{{user.groupRole}}
Société :
    {% for company in user.companies %}
  • {{company.name}}
  • {% endfor %}
Roles :
    {% for role in user.otherRoles %}
  • {{role}}
  • {% endfor %}
Produits :
    {% for produit in user.products %}
  • {{produit}} ({{ produit.reference }})
  • {% endfor %}
{#
Print
#}
{% endblock %}