I write in my template: {% if ticket_price.discounted_price %}
. Now that works perfect, until ticket_price.discounted_price = 0. As 0 can happen (original price = 10, discount = 10 > discounted_price = 0) if want to include this option.
However, it seems if ticket_price.discounted_price
'thinks' 0 is equal to None. How would you solve that?