I'm trying to use two user models with different 'username' type each one.
First user type is an administrator who login in with username and password. Second, a customer who login with phone number and password. Only the customer has custom fields.
I tried customize the Django User model but it only allows one auth user model.
I am thinking use an authentication backend.
Administrator only will login in admin dashboard, while customer only login in application.
Edit.
Different problem from. My user types have different ways to login each other.
My solution: Use Django's user model for dashboard administrator only. Use a Customer model with custom authentication backend.