diff --git a/pinaxcon/templates/registrasion/discount_list.html b/pinaxcon/templates/registrasion/discount_list.html index 9cba9f371b12a133168b847d3aeded9682686b93..9af56e16e22305f6f9452b8f1c0736f60b3e7eb9 100644 --- a/pinaxcon/templates/registrasion/discount_list.html +++ b/pinaxcon/templates/registrasion/discount_list.html @@ -1,20 +1,21 @@ {% if discounts %} -
-

Discounts and Complimentary Items

-
- -
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.
- {% regroup discounts by discount.description as discounts_grouped %} - {% for discount_type in discounts_grouped %} -

{{ discount_type.grouper }}

- - {% endfor %} - -
+
+

Discounts and Complimentary Items

+
+
+

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.

+ {% 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 %} +
+
+
{% endif %}