mirror of
https://github.com/almet/copanier.git
synced 2025-04-28 19:42:37 +02:00
Add order wanted/ajustment details as cell title in delivery page
This commit is contained in:
parent
4e608f9858
commit
9f3c19ddbe
1 changed files with 1 additions and 1 deletions
|
@ -41,7 +41,7 @@
|
||||||
{% endif %}
|
{% endif %}
|
||||||
</th>
|
</th>
|
||||||
{% for email, order in delivery.orders.items() %}
|
{% for email, order in delivery.orders.items() %}
|
||||||
<td>{{ order[product.ref].quantity or "—" }}</td>
|
<td title="Commandé: {{ order[product.ref].wanted }} — Ajusté: {{ "%+d"|format(order[product.ref].adjustment) }}">{{ order[product.ref].quantity or "—" }}</td>
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
</tr>
|
</tr>
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
|
|
Loading…
Reference in a new issue