Files @ a26f9a6f1864
Branch filter:

Location: symposion_app/pinaxcon/templates/registrasion/discount_list.html

Tobias
Fix for required-fields tag
{% if discounts %}
<div class="my-4">
  <h2>Discounts and Complimentary Items</h2>
  <p>The following discounts and complimentary items are available to you. If you wish to take advantage of this offer, you must choose your items below. This discounts will be applied automatically when you check out.</p>
  {% regroup discounts by discount.description as discounts_grouped %}
  {% for discount_type in discounts_grouped %}
  <h3>{{ discount_type.grouper }}</h3>
  <ul>
    {% for discount in discount_type.list %}
    <li>{{ discount.quantity }} &times; {{ discount.clause }}</li>
    {% endfor %}
  </ul>
  {% endfor %}
</div>

{% endif %}