如何向 Django 的“用户添加”添加额外的必填字段管理页面?
当向我的 Django 应用程序添加新用户时,我想确保管理页面要求管理员包含“电子邮件”字段。
我尝试修改 UserAdminForm 对象,但到目前为止我还是空的。有什么建议吗?
When adding a new user to my Django application, I'd like to ensure that the administration page requires an administrator to include the "email" field.
I've tried tinkering with the UserAdminForm object, but I've come up empty thus far. Any tips?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要将类似这样的内容添加到项目的 admin.py 文件之一:
本质上,将电子邮件字段设为必填,取消注册内置管理员,并使用覆盖注册新管理员。
You'll want to add something like this to one of your project's admin.py files:
Essentially, make the email field required, unregister the built-in admin, and register a new admin with the override.