mirror of
https://github.com/almet/copanier.git
synced 2025-04-28 11:32:38 +02:00
13 lines
763 B
HTML
13 lines
763 B
HTML
<table class="order">
|
|
<tr><th class="product">Produit</th>{% if display_prices %}<th class="price">Prix unitaire</th>{% endif %}<th class="amount">Quantité</th></tr>
|
|
{% for product in delivery.products %}
|
|
{% if order[product].quantity %}
|
|
<tr {% if product.rupture %}class="rupture"{% endif %}>
|
|
<th class="product" style="text-align: left;">{{ product }}{% if product.rupture %} (rupture){% endif %}</th>
|
|
{% if display_prices %}<td>{{ product.price | round(2) }} €</td>{% endif %}<td>{{ order[product].quantity }} x {{ product.unit }}</td>
|
|
</tr>
|
|
{% if product.rupture %}</del>{% endif %}
|
|
{% endif %}
|
|
{% endfor %}
|
|
</table>
|
|
<p>Total: {{ order.total(delivery.products, delivery, group_id) if order else 0 }} €</p>
|