{% extends 'base.html.twig' %} {% block title %}Confirmation de commande - Village de Menotey{% endblock %} {% block stylesheets %} {{ parent() }} {% endblock %} {% block body %}

Commande confirmée !

Merci pour votre confiance

Commande confirmée !

Votre commande a été enregistrée avec succès

Code de confirmation : {{ order.reservationCode }}
Informations client

Nom : {{ order.customerName }}

{% if order.customerEmail %}

Email : {{ order.customerEmail }}

{% endif %}
{% if order.customerPhone %}

Téléphone : {{ order.customerPhone }}

{% endif %}

Statut : {% if order.status == 'pending' %} En attente {% elseif order.status == 'confirmed' %} Confirmée {% elseif order.status == 'paid' %} Payée {% elseif order.status == 'ready' %} Prête {% elseif order.status == 'completed' %} Terminée {% elseif order.status == 'cancelled' %} Annulée {% else %} {{ order.status|title }} {% endif %}

Votre commande
{% for item in order.items %}
{{ item.pizza.name }}
{{ item.pizza.name }}
{% if item.pizza.vegetarian %} 🌱 Végétarien {% endif %} {{ item.pizza.description|slice(0, 80) }}{% if item.pizza.description|length > 80 %}...{% endif %}
{{ item.quantity }}
{{ (item.quantity * item.unitPrice)|number_format(2, ',', ' ') }} €
{% endfor %}
Total : {{ order.totalAmount|number_format(2, ',', ' ') }} €
Récupération
Date et heure

{{ order.pickupTime|date('d/m/Y à H:i') }}

Lieu de récupération

Village de Menotey
Place de la Mairie

Paiement

Mode de paiement : {% if order.paymentMethod == 'stripe' %} Paiement en ligne {% else %} Paiement à la réception {% endif %}

Prochaines étapes

1
Confirmation par email

Vous allez recevoir un email de confirmation avec tous les détails de votre commande.

2
Préparation de votre commande

Nos pizzaïolos préparent vos pizzas fraîches le jour de votre récupération.

3
Récupération

Présentez-vous à l'heure prévue avec votre code de confirmation.

Besoin d'aide ?

Notre équipe est là pour vous aider

Téléphone

03 84 XX XX XX

Email

contact@menotey.fr

Horaires

Ven-Sam : 18h-21h30

{% endblock %} {% block javascripts %} {{ parent() }} {% endblock %}