我需要 django 模板中的链接,如果用户通过身份验证,该链接将变为注销。(我已经实现了登录/注销页面)
试过{% if user.is_authenticated %} {% endif %}
但{% if user.is_anonymous %} {% endif %}
没有用。
测试代码(https://docs.djangoproject.com/en/dev/topics/auth/) -
{% if user.is_authenticated %}
<p>Welcome, {{ user.username }}. Thanks for logging in.</p>
{% else %}
<p>Welcome, new user. Please log in.</p>
{% endif %}
登录成功后返回false evan。