{% extends 'base.html.twig' %} {% block title %}Finaliser ma commande - NUM-ECARD{% endblock %} {% block body %} {# Calculer les totaux #} {% set totalHT = cartData.total|default(0) %} {% set tva = totalHT * 0.20 %} {% set totalTTC = totalHT * 1.20 %} ← Retour au panier 🛒 Finaliser ma commande Vérifiez votre commande et procédez au paiement sécurisé {% for message in app.flashes('error') %} ❌ {{ message }} {% endfor %} {% for message in app.flashes('warning') %} ⚠️ {{ message }} {% endfor %} {# ============================================= #} {# INFORMATIONS COMPTE (utilisateur connecté) #} {# ============================================= #} 👤 Votre compte {{ user.initiales ?? '?' }} {{ user.fullName ?: 'Client' }} {% if user.isVerified is defined and user.isVerified %} ✓ Vérifié {% endif %} 📧 {{ user.email }} {% if user.telephone %} 📱 {{ user.telephone }} {% endif %} Modifier mes informations → {# ============================================= #} {# RÉCAPITULATIF DES ARTICLES #} {# ============================================= #} 📦 Votre commande ({{ cartData.count|default(cartData.items|length) }} article{{ cartData.count|default(cartData.items|length) > 1 ? 's' : '' }}) {% for item in cartData.items %} 💳 {{ item.full_data.prenom ?? item.prenom ?? '' }} {{ item.full_data.nom ?? item.nom ?? 'Carte' }} Pack {{ item.type|capitalize }} {% if item.full_data.entreprise is defined and item.full_data.entreprise %} • {{ item.full_data.entreprise }} {% endif %} {{ (item.price|default(179))|number_format(2, ',', ' ') }} € HT {% endfor %} {# ============================================= #} {# SIDEBAR - RÉSUMÉ ET PAIEMENT #} {# ============================================= #} Récapitulatif Sous-total HT {{ totalHT|number_format(2, ',', ' ') }} € TVA (20%) {{ tva|number_format(2, ',', ' ') }} € Total TTC {{ totalTTC|number_format(2, ',', ' ') }} € 🔒 Procéder au paiement 🔐 Paiement sécurisé par Stripe 💳 CB / Visa / Mastercard 🛡️ SSL 256-bit 🇪🇺 RGPD {% endblock %}
Vérifiez votre commande et procédez au paiement sécurisé