'result':Trueを割り当て、それをテンプレートに渡しました。
テンプレートファイルについては、
{{ result }}
{% if result == True %}
this also True
{% endif %}
{% if result == 1 %}
this is 1
{% endif %}
{% if result == true %}
this is true
{% endif %}
結果は、
'本当これは1です'
私は'Trthisも本当だと思います