|
{% if not user.is_authenticated %}
{% if form.has_errors %}
Неправильный логин или пароль
{% endif %}
{% else %}
Вы вошли как {{ user|username}})
{% endif %}
|
{% load todo_extras %}
|
{% if not user.is_authenticated %}
{% if form.has_errors %}
Неправильный логин или пароль
{% endif %}
{% else %}
Вы вошли как {{ user|username}})
{% endif %}
|