{% extends 'base.html.twig' %} {% block body %}
Mon compte
{% include "./layouts/message_flash.html.twig" %}
{% if not is_granted('ROLE_WIIFOR') %}

Mon nom

{{ user.nom }}

Mon prénom

{{ user.prenom }}

{% endif %}

Mon adresse mail

{{ user.email }}

{% if not is_granted('ROLE_REFERENT_FORMATION') %}

Mon Poste

{% if user.fonction %}{{ user.fonction }}{% endif %}

{% endif %}
{% if not is_granted('ROLE_WIIFOR') %} Modifier mon compte {% else %} Modifier mon mot de passe {% endif %}
{% include "account/modal/account.html.twig" %} {% endblock %}