{% if user %}
{% if user.image is not null %} {% else %} {% set initials = user.prenom|slice(0, 1)|upper ~ user.nom|slice(0, 1)|upper %} {{initials}} {% endif %}
{{user.prenom}} {{user.nom}}
{% if staff and societe %} {% if societe.contact == user %} Responsable {% endif %} {% else %} {% if role %} {{user.role}} {% endif %} {% if email %} {{user.email}} {% endif %} {% endif %} {% if contact is defined and contact %} Contact principal {% endif %}
{% endif %}