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

Détails de la facturation

{# #}

Information additionnelle

Votre commande

{% for item in items %} {% endfor %}
Article Total
{{ item.product.title }} {{ item.product.price|number_format(0, ',', ' ') }} {{ app_devise }}
{#
  • Expédition
  • A vos frais
#}
  • Total
  • {{ total|number_format(0, ',', ' ') }} {{ app_devise }}
{% if is_granted('ROLE_CUSTOMER') %} Passer la commande {% else %} Se connecter pour valider la commande {% endif %}
{#

Vous pourriez aussi aimer

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