{% extends 'basehangar.html.twig' %} {% block title %}Ma commande - La Boot'Ique{% endblock %} {% block assets %} {% endblock %} {% block body %}

Je valide ma commande

dans template\horder\index.html.twig

user :{{ app.user }}

Connexion ou Inscription

{% set formHtml %} {{form_start(form, {action:path('horder_add')})}} {# {{ form_label(form.addresses, 'Choisissez votre adresse de livraison')}} #} {# {{ form_label(form.carriers, 'Choisissez votre adresse de transport')}} #} {# Ajouter nouvelle adresse #} {{form_end(form)}} {% endset %} {{ formHtml|replace({'[br]' : '
'})|raw }}
Récapitulatif Hangar:
{% for item in cart.products %}
{{ item.product.name }}
{{ item.product.name }}
{{ item.product.adresshangar }}
{#
x{{ item.quantity }} jours
#}
{{totalPrice / 100}} x {{ interval }} jours
{% endfor %}
Total hOrder Index
{{ (totalPrice * interval / 100)|number_format(2,',','.') }} €
{% endblock %}