I have 2 variables var1 and var2. Variables contains strings like "testi", "Test" "TEsT".
I need templates like this, but django throwed error..
{% ifequal var1|lower var2|lower %}
---something---
{% endifequall %}
Is there any good way to do this?
Can i modify some template variables and then use it later or set new
value to excisting variable?

