{% extends 'base.twig' %} {# --- DÉFINITION DES VARIABLES (Assurez-vous que 'dons' est passé par votre contrôleur) --- #} {% set donor_email = dons.email is defined ? dons.email : 'non-fourni' %} {% set donation_amount = dons.amount is defined ? dons.amount : 0 %} {# --- METADATA & SCHEMA --- #} {% block title %}{{'thank_you.title'|trans}}{% endblock %} {% block meta_description %}{{'thank_you.email_sent_info'|trans}}{% endblock %} {% block canonical_url %}{% endblock %} {# Pas de breadcrumb nécessaire pour une page de confirmation de transaction #} {# --- BODY AVEC TAILWIND CSS --- #} {% block body %}
{# Icône de Succès #}

{{ 'thank_you.title'|trans }}

{{ 'thank_you.message_main'|trans|raw }}

{# MONTANT DU DON #} {% if donation_amount > 0 %}

{{ 'thank_you.amount_received'|trans }}

{# Utilisation du filtre pour le formatage monétaire #} {{ donation_amount|format_currency('EUR', locale='fr') }}

{% endif %}
{# Informations sur l'email de confirmation (avec précision sur le paiement) #}

{{ 'thank_you.email_sent_title'|trans }}

{# Cette clé de traduction contient le message de clarification #}

{{ 'thank_you.email_sent_info'|trans }}

{# Afficher l'email du donateur #}

{{ 'thank_you.email_recipient'|trans }} : {{ donor_email }}

{# Invitation à explorer #}
{% endblock %}