{% extends "base.html" %} {% block body %}

{{ delivery.producer }} — Commande de «{{ person }}»

{% include "includes/delivery_head.html" %}
{% for product in delivery.products %} {% endfor %}
ProduitPrixQuantité
{{ product.name }} {% if product.description or product.img %} {% with unique_id=loop.index %} {% include "includes/modal_product.html" %} {% endwith %} {% endif %}

{{ product.price }} €

Total: {{ order.total(delivery.products) if order else 0 }} €

{% endblock body %}