{% extends 'base.html.twig' %} {% block title %}Mes commandes -Yggdrasil {% endblock %} {% block content %}

Mes commandes

C'est dans cette espace que vous allez pouvoir gérer toutes vos commandes.
Retour {% if commands|length ==0 %}

Vous n'avez pas encore passé de de commande sue l'atelier Yggdrasil.

{% else %} {% for command in commands %} {% endfor %}
Reference Statut Passée le Produit(s) Total
{{ command.reference }} {% if command.state == 1 %} Paiement accepté {% elseif command.state == 2 %} Préparation en cours {% elseif command.state == 3 %} Livraison en cours {% endif %} {{ command.createdAt|date('d/m/y') }} {{ command.commandDetails|length}} {{ ((command.priceSending + command.getTotal)/100)|number_format(2, ',', '.') }} € Voir ma commande
{% endif %}
{% endblock %}