在Django管理中,如何按组过滤用户?
它可以让您按员工状态和超级用户状态进行过滤,但是组呢?
It gives you filter by staff status and superuser status, but what about groups?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
它可以让您按员工状态和超级用户状态进行过滤,但是组呢?
It gives you filter by staff status and superuser status, but what about groups?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(4)
从版本 1.3 开始,可以使用 使用this:
当然,正如 @S.Lott 所解释的,您必须在 admin.py 文件中注册您的自定义类:
Since version 1.3 it can be done using this:
Of course as @S.Lott explains you must register your customized class in the admin.py file:
请参阅在 Django 中自定义管理表单,同时还使用自动发现< /a>
本质上,您可以使用您想要的功能定义自定义的 Admin 类。
然后注销并注册您修改后的 Admin 类。
See Customizing an Admin form in Django while also using autodiscover
Essentially, you define a customized Admin class with the features you want.
Then unregister and register your revised Admin class.
下面是一个完整的示例,它继承自 SimpleListFilter,它在 Django 1.4 及更高版本中可用(截至 2023 年 5 月):
https://docs.djangoproject.com/en/4.2/ref/contrib/admin/#django.contrib.admin.ModelAdmin.list_filter
它支持设置所有可用的标签和参数来创建完全自定义的过滤器。
它在过滤器面板中显示为“按组”,并包含所有可用组的列表。
Here is a complete example, that inherits from SimpleListFilter, which is available in Django 1.4 and up (current as of May 2023):
https://docs.djangoproject.com/en/4.2/ref/contrib/admin/#django.contrib.admin.ModelAdmin.list_filter
It support setting all available labels and parameters to create the completely custom filter.
It shows up as "By group" in the filter panel, with a list of all available groups.
在 Django 的更高版本中,它的工作方式与您所期望的完全一样:
无需取消注册/注册管理类。
In later versions of Django, it works exactly as you'd expect:
No need to unregister/register the admin class.