b8dcbd89b7
A big complaint from 2017 was that people overlooked things like shirts and dinner tickets as those are complimentary, so they assumed they didn't need to choose them. This change adds some labels and some explanatory text to try to make this more clear.
23 lines
720 B
HTML
23 lines
720 B
HTML
{% if discounts %}
|
|
<div class="alert-success">
|
|
<h3 class="label-success">Discounts and Complimentary Items</h3>
|
|
<div class="vertical-small"></div>
|
|
|
|
{% regroup discounts by discount.description as discounts_grouped %}
|
|
{% for discount_type in discounts_grouped %}
|
|
<h4>{{ discount_type.grouper }}</h4>
|
|
<ul>
|
|
{% for discount in discount_type.list %}
|
|
<li>{{ discount.quantity }} × {{ discount.clause }}</li>
|
|
{% endfor %}
|
|
</ul>
|
|
{% endfor %}
|
|
<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>
|
|
|
|
<hr />
|
|
</div>
|
|
|
|
{% endif %}
|