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

< Commandes

Producteur: {{ producer.name }}

Lieu: {{ order.where }}

Date: {{ order.when }}

Commande de «{{ person }}»

{% for product in order.products %} {% endfor %}
ProduitPrixQuantité
{{ product.name }}{{ product.price }} €

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

{% endblock body %}