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 c
Why would you need a ternary operator within a template? {% if %} and {% else %} are all you need.
{% if %}
{% else %}
Or you could try the firstof tag:
firstof
{% firstof var1 var2 var3 %}
which outputs the first one of var1, var2 or var3 which evaluates to a True value.