mirror of
https://github.com/almet/copanier.git
synced 2025-04-28 19:42:37 +02:00
Use Product.label in order table
This commit is contained in:
parent
4704211b55
commit
075f1cfbf6
1 changed files with 1 additions and 1 deletions
|
@ -3,7 +3,7 @@
|
||||||
{% for product in delivery.products %}
|
{% for product in delivery.products %}
|
||||||
{% if order.get_quantity(product) %}
|
{% if order.get_quantity(product) %}
|
||||||
<tr>
|
<tr>
|
||||||
<th class="product" style="text-align: left;">{{ product.name }}</th>
|
<th class="product" style="text-align: left;">{{ product.label }}</th>
|
||||||
<td>{{ product.price }} €</td><td>{{ order.get_quantity(product) }}</td>
|
<td>{{ product.price }} €</td><td>{{ order.get_quantity(product) }}</td>
|
||||||
</tr>
|
</tr>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
Loading…
Reference in a new issue