I was wondering if there was a ternary operator (condition ? true-value : false-value) that could be used in a Django template. I see there is a python one (true-value if condition else false-value) but I’m unsure how to use that inside a Django template to display the html given by one of the values. Any ideas?
I was wondering if there was a ternary operator (condition ? true-value : false-value)
Share
Why would you need a ternary operator within a template?
{% if %}and{% else %}are all you need.Or you could try the
firstoftag:which outputs the first one of var1, var2 or var3 which evaluates to a True value.