alexarsh
alexarsh

Reputation: 5391

Anonymous user in Django

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.

Upvotes: 0

Views: 2027

Answers (1)

Ignacio Vazquez-Abrams
Ignacio Vazquez-Abrams

Reputation: 798626

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

Upvotes: 1

Related Questions