我无法用我自己的自定义用户模型替换默认的 django 用户模型。是的,我已经AUTH_USER_MODEL = 'appName.modelName'
设置了settings.py
这是我的代码
settings.py
INSTALLED_APPS = [
'django.contrib.admin',
'django.contrib.auth',
'django.contrib.contenttypes',
'django.contrib.sessions',
'django.contrib.messages',
'django.contrib.staticfiles',
'userProfile',
'user_authorisation',
]
AUTH_USER_MODEl = 'userProfile.myUser'
userProfile/models.py
https://dpaste.de/Aerm
userProfile.forms.py
https://dpaste.de/0eOO
userProfile/admin.py
https://dpaste.de/Rm5S
毕竟,默认用户模型仍然显示在 django admin 中,并且在通过命令创建超级用户时python manage.py createsuperuser
,它正在创建默认用户模型的超级用户。