{% extends 'base.html.twig' %} {% block title %}Panier | CARTECADEAU{% endblock %} {% block body %}

Lot 3

Mon Panier

{% if cart.items is empty %}

Panier vide

Ajoutez des produits depuis le catalogue pour commencer.

Voir le catalogue

{% else %}
{% for line in cart.items %} {% endfor %}
Produit Type Quantite Prix unitaire Total ligne
{{ line.product.name }} {{ line.product.type }} {{ line.quantity }} {{ line.unitPrice|number_format(cart.pricingContext.decimals, ',', ' ') }} {{ cart.pricingContext.displayCurrency }} {{ line.lineTotal|number_format(cart.pricingContext.decimals, ',', ' ') }} {{ cart.pricingContext.displayCurrency }}

Total panier: {{ cart.total|number_format(cart.pricingContext.decimals, ',', ' ') }} {{ cart.pricingContext.displayCurrency }}

Passer au checkout
{% endif %}
{% endblock %}