Django Sessions
I am trying to make a login authentication using Django , I want to know that does Django already maintains the session or I need to define the session my self.
Sorry You must be a logged in, registered user to answer a question.
Answers
Here are Django's docs on authentication. Django will maintain the session for you, using a cookie or database session, assuming you're using Django's built-in systems.
Thanks Kennethlove the link has solved my problem there was an error in use of django authenticate method
Chitrank Dixit
on