Changeset - fc842b7c308b
[Not reviewed]
0 1 0
Christopher Neugebauer - 8 years ago 2016-09-13 09:07:32
chrisjrn@gmail.com
Wording on discounts on the form pages shows the reason for the discount.

Fixes #6.
1 file changed with 1 insertions and 1 deletions:
0 comments (0 inline, 0 general)
pinaxcon/templates/registrasion/discount_list.html
Show inline comments
 
{% if discounts %}
 
  <ul>
 
    {% for discount in discounts %}
 
      <li>{{ discount.quantity }} &times; {{ discount.clause }}</li>
 
      <li>{{ discount.discount.description }}: {{ discount.quantity }} &times; {{ discount.clause }}</li>
 
    {% endfor %}
 
  </ul>
 
{% endif %}
0 comments (0 inline, 0 general)