views:

38

answers:

2

How can I just enable anonymous user in Django? I mean, what is the minimum I should do to be logged in as anonymous first time I go to my site?

Regards, Arshavski Alexander.

+1  A: 

anonymous user authentication

shk
+1  A: 

If the auth middleware is in place then you're the anonymous user whenever you're not logged in.

Ignacio Vazquez-Abrams
It's in place. But I want to see "Logged as anonymous in the top right corner when I go to admin page and I don't see it.
alexarsh
That would be a limitation of the admin page and not the auth subsystem.
Ignacio Vazquez-Abrams