Home > Net >  How to prevent django admin login and logout sessions from reflecting in actual website?
How to prevent django admin login and logout sessions from reflecting in actual website?

Time:05-07

I'm quite new to django.

I've made a website that makes use of user auth for login, logout and registration.

Whenever I log into the admin panel, it also gets reflected in the actual website. The admin account gets logged into the website on its own.

I know this is the default behaviour of the django auth system, but I want to separate the auth session of admin panel and the actual website.

How can I do so?

The screenshots below show the thing which I'm talking about.

  • Related