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

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

{% include "includes/delivery_head.html" %}
{% for product in delivery.products %} {% endfor %}
ProduitPrixQuantité
{{ product.name }}

{{ product.description }}

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

{{ product.price }} €

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

{% endblock body %}