以下是验证用户是否存在的声明。
Start-Sleep -sec 240
这是我为要路由到的用户定义的模板。学生是管理员中用户的外键,注册是学生模型的外键。学生也是其他模型的外键,我想查询与该用户相关的所有内容。
if user is not None:
auth.login(request, user)
return HttpResponseRedirect('/studentloggedin/')
这是我在html模板中查询的字段之一:
def studentloggedin(request):
registration = Registration.objects.get()
student = Student.objects.filter(registration=registration)
context = {
'registration': registration,
'student': student,
}
return render(request, "studentloggedin.html", context)
但是现在登录时没有显示任何信息。我真的不知道为什么。