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

Les articles de votre panier

{% if itemCount > 0 %}
{% for item in items %} {% endfor %}
Image Nom de l'article Prix Quantité Sous total Action
{{ item.product.title }} {{ item.product.price|number_format(0, ',', ' ') }} {{ app_devise }} {{ item.quantity|number_format(0, ',', ' ') }} {{ (item.quantity * item.product.price)|number_format(0, ',', ' ') }} {{ app_devise }}
{#
Vider le panier
#}

Total panier

Total articles {{ total|number_format(0, ',', ' ') }} {{ app_devise }}
{#
Total frais de port

Les frais de port sont à la charge du client

#}

Total {{ total|number_format(0, ',', ' ') }} {{ app_devise }}

Passer à la caisse
{% else %}

Il n'y a plus d'articles dans votre panier

Continuer vos achats
{% endif %}
{#

Vous pourriez aussi aimer

{% for product in special_offers_products %} {{ include('default/_newProductBox.html.twig') }} {{ include('default/_productModal.html.twig') }} {% endfor %}
#} {% endblock %}