I have a couple if/else statements that all seem to return this same parse error regardless of what page or other content exists on the page.
For all intents and purposes have dumbed it down. My actual logic makes sense, don't worry, I just want to know what of my syntax is causing this problem:
<div>
{% if True and 10 - 1 > 5 %}
<p>1</p>
{% else %}
<p>2</p>
{% endif %}
</div>
When I do the above, I expect it to show the <p>1</p>
tag but instead returns a "TemplateSyntaxError at " URL, Could not parse remainder: '-' from '-'.