Форум сайта python.su
-1
почему не работает такой вот код в шаблоне:
{% if user.is_auth%}
Hello, {{user.username}}
{% endif %}Офлайн
3
Evg, попробуй так
{% if user.is_authenticated %}
Hello, {{user.username}}
{% endif %}Офлайн