In Jinja2, how do you test if a variable is undefined?

Converting from Django, I’m used to doing something like this:

{% if not var1 %} {% endif %}

and having it work if I didn’t put var1 into the context. Jinja2 gives me an undefined error. Is there an easy way to say {% if var1 == None %} or similar?

7 Answers
7

Leave a Comment