How do I check if a variable is False using Django template syntax?
{% if myvar == False %}
Doesn\'t seem to work.
I think this will work for you:
{% if not myvar %}