If you dont want django admin just remove it from installed apps , middleware and urls..
But i dont advice you to do this , you can make you own dashboards and keep django default admin panel .. You need a 3 signup pages and 3 login pages , each signup page will create a different user and each login page will login each user type to his dashboard type .. I advice you to make a 3 seperate apps to organize the code .. On Sat, 9 Nov 2019, 5:34 am Wim Olivier, <[email protected]> wrote: > Hi everyone, > > I would like to disable the Django Admin, and create my own custom admin > dashboards. > There must be three different types of admin dashboards: > - one for Customers (normal users) where they can do CRUD on their profile > and services (URI: /customer/dashboard) > - one for Partners where they can do CRUD on their users/customers, and > their Customers' profile and services (URI: /partner/dashboard) > - one for Super Users where they can do CRUD on Customers, Partners, and > everything else (URI: /administration) > > I understand very well the ways to extend the User model - that part I'm > OK with. > > Just some practical pointers with a small example, or links to > Django-based repos that implement something like this, please. > I just need some guidance. > > Many thanks! > Wim Olivier > South Africa > > -- > You received this message because you are subscribed to the Google Groups > "Django users" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to [email protected]. > To view this discussion on the web visit > https://groups.google.com/d/msgid/django-users/66befa62-2c5b-4d3d-9653-1c8169ccdcc2%40googlegroups.com > <https://groups.google.com/d/msgid/django-users/66befa62-2c5b-4d3d-9653-1c8169ccdcc2%40googlegroups.com?utm_medium=email&utm_source=footer> > . > -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/CAHV4E-eh36c2HSWFm2bkQTpUEZTqpQ1gCU%3DxqB-d51s11V%2Bs1g%40mail.gmail.com.

