将自定义操作添加到 UserModel 的管理页面
是否有可能在 django UserModel 的管理页面中创建自定义操作?我希望自动将用户添加到组中(例如将他添加到员工中,设置一些额外的值等),当然还要创建收回这些更改的操作。
感谢您的帮助。
Is there any possibility to create custom action in admin page for django UserModel? I want automatize adding user to group (like adding him to staff, set some extra values, etc.), and of course create actions that take these changes back.
Thanks for your help.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在 admin.py 中导入
User
取消注册它,为其创建新的ModelAdmin
(或将默认的子类化)并继续使用。我猜它看起来像这样:
操作参考。
Import
User
in your admin.py unregister it, create newModelAdmin
for it (or subclass the default one) and go wild.It would look something like this I guess:
Reference for actions.
工作示例,不会丢失所有默认内联操作等
在这里,我们将添加激活选定用户的操作。
Working example without losing all default inline actions etc.
Here we will add action which activates selected users.