I've been going through the djangobook, the online version, and am on
page 84, I have done all 5 steps but when I go to
http://127.0.0.1:8000/admin/.
I get:
Traceback (most recent call last):
File "C:\Python25\lib\site-packages\django\core\handlers\base.py" in
get_response
77. response = callback(request, *callback_args, **callback_kwargs)
File "C:\Python25\Lib\site-packages\django\contrib\admin\views
\decorators.py" in _checklogin
50. if request.user.is_authenticated() and request.user.is_staff:
AttributeError at /admin/
'WSGIRequest' object has no attribute 'user'
Does anyone know why this might be the case and how I can solve the
problem?