{% extends 'Default/base.html.twig' %} {% block title %} Mon Profile {% endblock %} {% block breadcrumb1 %} Mon Compte {% endblock %} {% block breadcrumb2 %} Profile {% endblock %} {% block content %}
Contact Informations
Civility : {{ user.civility }}
Nom & Prénom : {{ user.firstName ~' '~user.lastName }}
Email : {{ user.email }}
Role : {% if user.roles[0]=="ROLE_MANAGER" %} Admin Géstionnaire Métier {% elseif user.roles[0]=="ROLE_ADMIN_COUNTRY" %} Admin Pays {% elseif user.roles[0]=="ROLE_ADMIN_WORLD" %} Admin {% endif %}
Status : {% if user.enabled %} Activé {% else %} Desactivé{% endif %}
{% endblock %}