{% extends 'admin/hub/layout.html.twig' %} {% set hub_title = 'Profil' %} {% set hub_breadcrumbs = [ { label: 'Profil', url: path('app_profil_hub') }, { label: 'Mes coordonnees' } ] %} {% block title %}Mes coordonnees — Mercuriale.io{% endblock %} {% block stylesheets %} {{ parent() }} {% endblock %} {% block hub_content %}

Mes coordonnees

{# Mon compte #}
Mon compte
Prenom
{{ user.prenom }}
Nom
{{ user.nom }}
Email
{{ user.email }}
Role
{% set role_label = 'Utilisateur' %} {% if 'ROLE_ADMIN' in user.roles %} {% set role_label = 'Administrateur' %} {% elseif 'ROLE_MANAGER' in user.roles %} {% set role_label = 'Gerant' %} {% elseif 'ROLE_OPERATOR' in user.roles %} {% set role_label = 'Operateur' %} {% endif %} {% include 'components/_status_badge.html.twig' with { label: role_label, variant: 'navy', size: 'sm' } only %}
{# Organisation / Etablissement #}
Organisation
Organisation
{{ organisation.nom }}
SIRET
{{ organisation.siret ?? '—' }}
{% if etablissements is not empty %}
Etablissements rattaches
{% for etab in etablissements %}
{{ etab.nom }}
{% if etab.adresseComplete %}
{{ etab.adresseComplete }}
{% endif %} {% if etab.telephone %}
{{ etab.telephone }}
{% endif %}
{% endfor %}
{% endif %}
{# Preferences #}
Preferences
Seuil d'alerte prix
5 % (par defaut)
Notifications push
{% include 'components/_status_badge.html.twig' with { label: 'Active', variant: 'success', size: 'sm' } only %}
{# Mot de passe — placeholder #}
Securite

La modification du mot de passe sera disponible prochainement.

{# Deconnexion #}
Se deconnecter
{% endblock %}