{% extends 'base.html.twig' %} {# extends 'basenatu.html.twig' #} {% block title %}Hello CheckoutController!{% endblock %} {% block body %}

dans template checkout/index2.html.twig

{{ form_start( checkout, {action: path('checkoutconfirm')} )}}

Votre commande Patrick index2

Username : {{ app.user.username }}

{% for element in cart.products %} description : {{ element.producta.description }}titi {% endfor %}
Produit Total
{{ element.producta.name }} x {{ element.quantity }} € {{ element.producta.price }}
SousTotal HT € {{ cart.data.subTotalHT }}
Taxe € {{ cart.data.Taxe }}
Total € {{ cart.data.subTotalTTC }}

Payment

{{ form_end(checkout) }}
{% endblock %}