{% extends 'base.html.twig' %} {% block title %}Mes commandes | {{ parent() }}{% endblock %} {% block body %}

Mes commandes

{% if app.user.customer %} {% if app.user.customer.saleOrders|length > 0 %}
{% for ordre in app.user.customer.saleOrders %} {% for line in ordre.saleOrderLines %} {% endfor %} {% endfor %}
Image Article Prix Quantité Sous-total Action
{{ line.product.title }} {{ line.price|number_format(0, ',', ' ') }} {{ line.quantity|number_format(0, ',', ' ') }} {{ (line.quantity * line.price)|number_format(0, ',', ' ') }}
{% else %}

Vous n'avez pas encore passé de commades

Aller à la boutique
{% endif %} {% else %}

Vous n'avez pas encore passé de commades

Aller à la boutique
{% endif %}
{% endblock %}