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

dans template checkout/index.html.twig

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

Votre adresse de livraison Patrick

{{ form_widget(checkout.address) | replace({'[br]' : '-'}) | raw}} {# {{ form_widget(checkout.address) | replace({'[spr]' : '
'}) | raw}} #}
Nouvelle adresse

Informations pour le livreur

{{ form_widget(checkout.carrier)| replace({'[br]' : '-'}) | raw }} {# {{ form_widget(checkout.informations)| replace({'[br]' : '-'}) | raw }} #}

Votre commande

{% for element in cart.products %} {% 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 %}