django-registation check用户在模板上处于活动状态

时间:2016-04-17 14:13:35

标签: python django django-registration

我尝试检入模板,打开激活链接的用户已经处于活动状态,或者是否有其他错误。我试过模板用户,user.is_active,user.is_authenticated,帐户,但任何事情都不起作用或返回False。我怎么检查它?我正在使用Django 1.9和django-registration

activation_complete.html

{% if account %}
  <p>Konto zostało pomyślnie aktywowane.</p>
  <p><a href="{% url 'login' %}">Zaloguj się.</a></p>
{% else %}
  <p>Aktywacja nie powiodła się. Proszę skontaktuj się z Administratorem.</p>
{% endif %}

它显示为false但是当我列出用户时他是活跃的:

users.get(username='test').is_active True

0 个答案:

没有答案