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 :
Produit |
Option |
Quantité |
Prix |
{% for p in registration.products %}
{{ p.product.title }} |
{{ p.optionProduct is defined and p.optionProduct ? p.optionProduct.name : '-' }} |
{{ p.quantity }} |
{{ (p.price * p.quantity)|number_format(2, ',', ' ') }} € |
{% endfor %}
Total : {{ registration.totalAmount|number_format(2, ',', ' ') }} €
Merci de votre participation, L'équipe organisatrice
|