To login to the site, open the /admin URL (e.g. http://127.0.0.1:8000/admin ) and enter your new superuser userid and password credentials (you’ll be redirected to the login page, and then back to the /admin URL after you’ve entered your details).3 Şub 2022
Read moreHow do I add permission to Django admin?
Adding ‘view’ permission to default permissions list
Read moreHow do I restrict admin in Django?
Django admin allows access to users marked as is_staff=True . To disable a user from being able to access the admin, you should set is_staff=False . This holds true even if the user is a superuser.
Read more