Why I got this error?
I have this error on django, while it's working correctly on Flask.
1 {% if user.is_authenticated %}
2 {% extends "home.html" %}
3 {% else %}
4 {% extends "index_not_auth.html" %}
5 {% endif %}
TemplateSyntaxError at / Invalid block tag on line 3: 'else'. Did you forget to register or load this tag? Request Method: GET Request URL: http://127.0.0.1:8000/ Django Version:
3.2.2Exception Type: TemplateSyntaxError Exception Value:
Invalid block tag on line 3: 'else'. Did you forget to register or load this tag? Exception Location: D:\GitHub Repositories\Django-WebApp\venv\lib\site-packages\django\template\base.py, line 534, in invalid_block_tag Python Executable: D:\GitHub Repositories\Django-WebApp\venv\Scripts\python.exe Python Version:3.6.1