copyleftconf-website/pinaxcon/templates/registrasion/discount_list.html

8 lines
205 B
HTML
Raw Normal View History

{% if discounts %}
<ul>
{% for discount in discounts %}
<li>{{ discount.discount.description }}: {{ discount.quantity }} &times; {{ discount.clause }}</li>
{% endfor %}
</ul>
{% endif %}