{# user_registration_confirmation.html.twig #}

✅ Confirmation d'inscription

Bonjour {% if registration.user %} {{ registration.user.firstname }} {% else %} {{ registration.getFieldValue('firstname') }} {% endif %},

Nous vous confirmons l'enregistrement de votre inscription à la manifestation {{ registration.manifestation.title }} (référence : {{ registration.reference }}).

{% if registration.state == constant('App\\Entity\\ManifestationRegistration::STATE_CONFIRM') %}

Votre paiement a bien été validé !

{% elseif registration.state == constant('App\\Entity\\ManifestationRegistration::STATE_PAYMENT_REFUSED') %}

Votre paiement a été refusé.

{% elseif registration.state == constant('App\\Entity\\ManifestationRegistration::STATE_PAYMENT_CANCELED') %}

Votre paiement a été annulé.

{% else %}

Votre inscription est enregistrée, mais le paiement n’a pas encore été finalisé.

{% endif %}

🧾 Détail de votre commande :

{% for p in registration.products %} {% endfor %}
Produit Option Quantité Prix
{{ p.product.title }} {{ p.optionProduct is defined and p.optionProduct ? p.optionProduct.name : '-' }} {{ p.quantity }} {{ (p.price * p.quantity)|number_format(2, ',', ' ') }} €

Total : {{ registration.totalAmount|number_format(2, ',', ' ') }} €

Merci de votre participation,
L'équipe organisatrice

{% if signature.text %}

{{ signature.text }}

{% endif %} {% if signature.logo %} Signature {% endif %}