2016-03-30 04:13:50 +00:00
|
|
|
{% if discounts %}
|
2017-10-01 09:01:15 +00:00
|
|
|
<div class="alert-success">
|
|
|
|
<h3 class="label-success">Discounts and Complimentary Items</h3>
|
2017-10-01 03:44:41 +00:00
|
|
|
<div class="vertical-small"></div>
|
2016-09-30 10:46:05 +00:00
|
|
|
|
|
|
|
{% regroup discounts by discount.description as discounts_grouped %}
|
|
|
|
{% for discount_type in discounts_grouped %}
|
|
|
|
<h4>{{ discount_type.grouper }}</h4>
|
2016-03-30 04:13:50 +00:00
|
|
|
<ul>
|
2016-09-30 10:46:05 +00:00
|
|
|
{% for discount in discount_type.list %}
|
2016-03-30 04:13:50 +00:00
|
|
|
<li>{{ discount.quantity }} × {{ discount.clause }}</li>
|
|
|
|
{% endfor %}
|
|
|
|
</ul>
|
2016-09-30 10:46:05 +00:00
|
|
|
{% endfor %}
|
2017-10-01 09:01:15 +00:00
|
|
|
<blockquote>
|
|
|
|
<small>Note that you must choose your items below, even if they are complimentary.</small>
|
|
|
|
<small>Any applicable discounts will be applied automatically when you check out.</small>
|
|
|
|
</blockquote>
|
2017-10-01 03:44:41 +00:00
|
|
|
|
|
|
|
<hr />
|
2017-10-01 09:01:15 +00:00
|
|
|
</div>
|
2017-10-01 03:44:41 +00:00
|
|
|
|
2016-03-30 04:13:50 +00:00
|
|
|
{% endif %}
|