{% 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 %}

{{ product.description }}

{% if product.img %} {% endif %}

{% endif %}

{{ product.price }} €

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

{% endblock body %}