我用django登录,并且运行正常,当我关闭浏览器选项卡时,sessión保持打开状态,但是如果我访问我的网站,
(127.0.0.1:8000)
,再次显示登录模板,并希望向用户显示另一个模板而不是登录。我尝试使用if,但无法正常工作:
def home(request):
if user.is_authenticated:
template = "general.html"
else:
template = "index.html"
context = {}
return render(request,template,context)
希望有人可以帮助我