Python - Multiple type users with custom user model in django-allauth
问题 I'm working on a project using PythoN(3.7) & Django(2.2) in which I have to create 4 different types of users with different fields but they will share some common fields like title & name etc. But I also need to use email as the username and need to provide different signup form but one login form. I'm currently using django-allauth to implement my user management and setup the email as the username. Here's what I did: From models.py : class CustomUser(AbstractUser): # add common fields in