I have to use an 'or' in Python and HTML.
<div>
{% if imp[3][0] == 'abc' || imp[3][0] == 'def' %}
<p>yes</p>
{% endif %}
</div>
I get an error:
jinja2.exceptions.TemplateSyntaxError: expected token 'name', got '|'
However, && for and works. Any way?