use new price system in the eboutic

This commit is contained in:
imperosol
2026-03-02 15:47:42 +01:00
parent 336b724315
commit 52a5d19454
4 changed files with 97 additions and 95 deletions

View File

@@ -32,9 +32,9 @@
<tbody>
{% for item in basket.items.all() %}
<tr>
<td>{{ item.product_name }}</td>
<td>{{ item.label }}</td>
<td>{{ item.quantity }}</td>
<td>{{ item.product_unit_price }} €</td>
<td>{{ item.unit_price }} €</td>
</tr>
{% endfor %}
</tbody>