Right now, I'm a bit of a dilemma regarding the Django admin backend. The default authentication system allows already registered users with access rights to the admin site, but simply allows them directly.
This does not seem “right” to me, and I wonder if it will be difficult to at least require re-authentication of the same session in order to get into the backend.
Preferably, however, it would be nice if the front-end sessions could be separated from the inside (albeit using the same user objects), this would ensure a clean separation of both parts of the site. Perhaps this will require two separate authentication servers? Is it hard to do this?
user212081
source
share