AbstractUser Django full example
问题 I am new to Django and I have been trying this for weeks, but could not find a way to solve this problem. I want to store additional information like user mobile number, bank name, bank account. And want to store the mobile number while user registers and wants user to login with either (mobile number and password) or (email and password). This is my UserProfile model from django.db import models from django.contrib.auth.models import User from django.contrib.auth.models import AbstractUser #