{{ name }} - {{ delivery_date }}
Produits : {% for item in items.all %}
{{ item }}
{% endfor %}
{% if items %}
Nom |
{% for item in items %}
{{ item.name }}
|
{% endfor %}
Prix |
Total |
{% for item in items %}
{{ item.ordered_nb }} |
{% endfor %}
{% for order in orders_dict %}
poeut
{% endfor %}
TOTAL |
{% for total in totals %}
{{ total }}
{% endfor %} {% if include_prices %}
|
{{ total_to_pay|floatformat:2 }} € |
{% endif %}
{% for user in user_info %}
{% if include_prices %}
|
{% endif %}
{% endfor %}
{% else %}
Nom |
{{Quantité}} |
Récupéré ? |
{% if include_prices %}
À payer |
{% endif %}
{% for user in user_info %}
|
{% if include_prices %}
|
{% endif %}
{% endfor %}
TOTAL |
{% for total in totals %}
{{ total }} |
{% endfor %}
|
{% if include_prices %}
{{ total_to_pay|floatformat:2 }} € |
{% endif %}
{% endif %}