{{ delivery.producer }} {{ delivery.when.date() }} - liste d'émargement
{% for email, order in delivery.orders.items() %}
{{ email }}
Produit
Prix unitaire
Quantité
{% for product in delivery.products %} {% if order.get_quantity(product) %}
{{ product.name }}
{{ product.price }} €
{{ order.get_quantity(product) }}
{% endif %} {% endfor %}
Total: {{ order.total(delivery.products) if order else 0 }} €
{% endfor %}