Wording on discounts on the form pages shows the reason for the discount.
Fixes #6.
This commit is contained in:
parent
9b888ab4c9
commit
fc842b7c30
1 changed files with 1 additions and 1 deletions
|
@ -1,7 +1,7 @@
|
||||||
{% if discounts %}
|
{% if discounts %}
|
||||||
<ul>
|
<ul>
|
||||||
{% for discount in discounts %}
|
{% for discount in discounts %}
|
||||||
<li>{{ discount.quantity }} × {{ discount.clause }}</li>
|
<li>{{ discount.discount.description }}: {{ discount.quantity }} × {{ discount.clause }}</li>
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
</ul>
|
</ul>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
Loading…
Reference in a new issue