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

Lot 3

Checkout Commande

Cette etape cree la commande puis vous redirige vers CinetPay pour le paiement Mobile Money.

{% if errors is not empty %}

Erreurs de validation

{% endif %}
{% for line in cart.items %}

{{ line.product.name }} (x{{ line.quantity }})

{{ line.product.type|upper }} | SubType: {{ line.product.subType ?: '-' }}

{% if line.product.type == 'topup' %} {% if line.product.subType in [2,4] %} {% endif %} {% if line.product.subType in [3,4] %} {% endif %} {% if line.product.subType == 5 %} {% endif %} {% else %}

Aucun champ supplementaire requis pour un voucher.

{% endif %}
{% endfor %}

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

{% endblock %}