{% extends 'base.html.twig' %} {% block title %}Ma commande - La boutique française{% endblock %} {% block content %}
Produit | Quantité | Prix unitaire | Total |
---|---|---|---|
{{ product.product }} | x{{ product.quantity}} | {{ (product.price / 100)|number_format(2, ',', '.') }} € | {{ (product.total / 100)|number_format(2, ',', '.') }} € |