如何在Django 1.8中重定向已登录的用户?

时间:2018-10-25 16:25:05

标签: python django-templates django-views django-1.8

我用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)

希望有人可以帮助我

0 个答案:

没有答案