{# Partial: User Information Section #}

Informations utilisateur

Email
{{ user.email }}
Date d'inscription
{{ user.createdAt|date('d/m/Y') }}
Plan d'abonnement
{{ user.subscriptionPlan|capitalize }}
Statut
{{ user.subscriptionStatus|capitalize }}
{% if user.subscriptionEndDate %}
Fin d'abonnement
{{ user.subscriptionEndDate|date('d/m/Y') }}
{% endif %}
Roles
{{ user.roles|join(', ') }}
{# Preferences #}

Preferences

Theme
{{ user.preferences.theme|default('system')|capitalize }}
Police dyslexique
{{ user.preferences.dyslexicFont|default(false) ? 'Oui' : 'Non' }}
{# Billing if available #} {% if user.billing and (user.billing.companyName or user.billing.address) %}

Informations de facturation

{% if user.billing.accountType %}
Type de compte
{{ user.billing.accountType|capitalize }}
{% endif %} {% if user.billing.companyName %}
Entreprise
{{ user.billing.companyName }}
{% endif %} {% if user.billing.siret %}
SIRET
{{ user.billing.siret }}
{% endif %} {% if user.billing.vatNumber %}
Numero TVA
{{ user.billing.vatNumber }}
{% endif %} {% if user.billing.address %}
Adresse
{{ user.billing.address }}
{{ user.billing.postalCode }} {{ user.billing.city }}
{{ user.billing.country }}
{% endif %}
{% endif %}