Django Python更改用于身份验证的用户默认属性

时间:2017-11-08 21:50:59

标签: python django authentication django-models

在Django中,用户的默认属性: 用户名 密码 电子邮件 名字 姓氏

我想删除email,first_name,last_name 并将其替换为公司

这可能吗?有人可以告诉我使用这3个修改过的属性执行身份验证会话的过程: - 公司 - 用户名 - 密码

感谢。

1 个答案:

答案 0 :(得分:0)

You should read the documentation regarding customizing authentication in Django especially the part regarding User model substitution if you would like to create your own model.