标签: django django-templates
我认为django只检查用户是否在索引页面上进行了身份验证。在我的base.html中,我有:
<li>{% if request.user.is_authenticated %}<a href="/users/logout/">Logout</a>{% else %}<a href="/users/login"></a>{% endif %}</li>
它在我的目标网页上运行正常,但当我导航到任何其他页面时,在页面上注销或登录显示。