{% extends 'base.html.twig' %} {% block style %} #ticket1 { width: 300px; background: #f9f9f9; padding: 1px 5px; margin: 15px auto; border: 1px solid #000; } hr { margin: 5px 0px; } p { margin: 0px; } table tr th:first-child, table tr td:first-child { width: 16.66%; } table tr th:nth-child(2) { width: 58.33%; } table tr th:last-child, table tr td:last-child { width: 25%; } .text-left { text-align: left; } .text-center { text-align: center; } .text-right { text-align: right; } .order-footer h4, .order-footer h5 { margin: 2px 0; } {% endblock %} {% block body %}
Merci pour votre commande!
Voici votre récapitulatif :
QTE | PRODUIT | PRIX |
---|---|---|
{{ el.quantity }} |
{{ el.name }}
{% if el.size!='' and el.level>0 %}
({{ el.size }})
{% endif %}
|
{{ el.price * el.quantity | number_format(2, '.', ',') }} {{order.currency}} |
Sans : {% for comp in el.removedCompositions %} {{ comp.name }}, {% endfor %} | compris | |
Avec : {% for opt in el.optionIngredients %} {{ opt.name }}, {% endfor %} | compris | |
{{ el.quantity }} | Supp : {{ supp.name }} | {{ supp.cout*el.quantity }} {{order.currency}} |
{{ el.comment }} | ||
{{ menu.quantity }} |
{{ menu.title }}
|
{{ menu.price*menu.quantity | number_format(2, '.', ',') }} {{order.currency}} |
{{ el.quantity }} {{ el.name }}
{% if el.size!='' and el.level>0 %}
({{ el.size }})
{% endif %}
|
{{ el.price | number_format(2, '.', ',') }} {{order.currency}} | |
Sans : {% for comp in el.removedCompositions %} {{ comp.name }}, {% endfor %} | compris | |
Avec : {% for opt in el.optionIngredients %} {{ opt.name }}, {% endfor %} | compris | |
{{ el.quantity }} | Supp : {{ supp.name }} | {{ supp.cout }} {{order.currency}} |
{{ menu.comment }} | ||
Remise {{ order.discount }} % | - {{ (order.amount*order.discount)/100 }} {{order.currency}} | |
Coupon {{order.couponValue}} {% if order.couponType==1 %} {{order.currency}} {% else %} % {% endif %} | - {{order.couponAmount}} {{order.currency}} | |
{{ order.feesLabel }} | {{ order.fees }} {{order.currency}} |
{{ order.comment }}
Commande payée en ligne
{% endif %}Bon appétit et à très vite chez {{ restaurant }}
Toute l'équipe vous remercie pour votre fidélité.
{% endblock %}