{% extends "base.html.twig" %} {% block body %}
Retrouvez ici toutes vos commandes passées, classées par année.
Réf : {{ order.reference }}
Commande du {{ order.createdAt|date('d/m/Y') }}
Montant : {{ order.total|number_format(2, ',', ' ') }} €
État : {% if order.state == constant('App\\Entity\\Order::STATE_CONFIRM') %} Confirmée {% elseif order.state == constant('App\\Entity\\Order::STATE_PAYMENT_WAITING') %} En attente de paiement {% else %} Annulée / Refusée {% endif %}
Réf : {{ reg.reference }}
Inscription du {{ reg.createdAt|date('d/m/Y') }}
Manifestation : {{ reg.manifestation.title }}
État : {% if reg.state == constant('App\\Entity\\ManifestationRegistration::STATE_CONFIRM') %} Confirmée {% elseif reg.state == constant('App\\Entity\\ManifestationRegistration::STATE_PAYMENT_WAITING') %} En attente de paiement {% else %} Annulée / Refusée {% endif %}
Aucune commande trouvée avec les filtres sélectionnés.
{% endif %}