I m New to django and efforts to haveuser accreditation work. 我制定了非常基本的标志和看法,但我错了:
AttributeError at /accounts/login/ User object has no attribute user
I m confused because I don t try and access User.user
I know it has to be something in the first else statement because an authenticated user just redirects to "/" as it should
Here is the view:
def login(request):
if request.user.is_authenticated():
return HttpResponseRedirect("/")
else:
if request.method == POST :
username = request.POST[ username ]
password = request.POST[ password ]
user = authenticate(username=username, password=password)
if user is not None:
if user.is_active:
login(user)
return HttpResponseRedirect("/")
return HttpResponse("There was an error logging you in")
else:
return render_to_response("registration/login.html",
context_instance=RequestContext(request))
错误在意见.py第15行中提出:如果要求,用户.is_authenticated():