The most straightforward answer is “no “. As the Django Book says, the admin is for “Trusted users editing structured content,” in this case the structured content being models arranged in hierarchies and configured through settings.py.
Read moreCan I create multiple superuser in Django?
Both admins are available at their respective URLs, http://127.0.0.1:8000/admin/ and http://127.0.0.1:8000/post-admin/ . You can create more models and add them to the admin class you want , you can have a model registered in different admin class as well.15 Oca 2021
Read moreHow do I create a separate login for administrator and user in Django?
auth import authenticate, login def my_view(request): username = request. POST[‘username’] password = request. POST[‘password’] user = authenticate(username=username, password=password) if user is not None: if user. is_active: login(request, user) # Redirect to a success page.
Read moreHow do I create two independent admin sites in Django?
auth appliaction in my project tree, naming it differently and using separate admin. site . register() calls for both of them. This way I can have other models available in each one of them, diffrent looks, etc.
Read more