{% extends "base.html" %} {% block body %}
Producteur: {{ producer.name }}
Lieu: {{ order.where }}
Date: {{ order.when }}
Produit | Prix | {% for email, person_order in order.orders.items() %}{{ email }} | {% endfor %}Total | |
---|---|---|---|---|
{{ product.name }} | {{ product.price }} € | {% for email, person_order in order.orders.items() %} {% if product.ref in person_order.products %}{{ person_order.products[product.ref].wanted }} | {% else %}— | {% endif %} {% endfor %}{{ order.product_wanted(product) }} |
Total: {{ total }} €
{% endblock body %}