I'm doing a very simple example using Django.
In my view I have the following:
def index(request,idade):
string = '''
{% if idoso >= 65 %}
Você já é idoso
{% else %}
Você não é idoso
{% endif %}
'''
t = template.Template(string)
c = template.Context({'idoso':idade})
return HttpResponse(t.render(c))
But even if I pass any value it will always return the if message, ie if I pass 10 it will return: you are already old.
Does anyone know why this is occurring?
NOTE: I use Django 1.11.