Mes Commandes

{% for message in app.flashes('success') %} {% endfor %}
{% if commandes is empty %}
Aucune commande

Vous n'avez pas encore passé de commande

Parcourir les lots
{% else %}
{% for commande in commandes %} {% endfor %}
N° Commande Date Article Quantité Total Statut Action
{{ commande.numeroCommande }} {{ commande.createdAt|date('d/m/Y H:i') }} {{ commande.lot.name }} {{ commande.quantite }} {{ commande.prixTotal|number_format(2, ',', ' ') }} € {{ commande.statutLabel }} Détails
{% endif %}
{{ include('partials/footer.html.twig') }}