Discounts and Complimentary Items
{% regroup discounts by discount.description as discounts_grouped %}
{% for discount_type in discounts_grouped %}
{{ discount_type.grouper }}
{% for discount in discount_type.list %}
- {{ discount.quantity }} × {{ discount.clause }}
{% endfor %}
{% endfor %}
Note that you must choose your items below, even if they are complimentary.
Any applicable discounts will be applied automatically when you check out.
{% endif %}