Files @ 1886323d7431
Branch filter:

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

Sachi King
Bootstrapification

Boot custom CSS, and put some base, standard css in its place.
Shame I did not start with fresh Bootstrap4, but oh well.

Some more templates could be made to make this less messy, which would
be good.
{% if discounts %}

  {% 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 }} &times; {{ discount.clause }}</li>
    {% endfor %}
  </ul>
  {% endfor %}
{% endif %}