Django 管理,过滤内联表单集的对象
我有一个内联表单集,我想排除一些模型对象在表单集中显示。
例如。模型 B 具有模型 A 的外键,因此它是 1:n(A 对象有许多 B 对象)关系。现在在 A 管理编辑页面上,我已经获得了 B 的内联。我想知道是否可以在渲染内联表单集之前以某种方式过滤 B 对象列表,因此并非所有与 A 相关的 B 对象都会进入表单集。
I've got an inline formset and I would like to exclude some model objects from being displayed in the formset.
For eg. there is model B which has foreign key to model A, so it is a 1:n (A object has many B objects) relationship. Now on A admin edit page I've got inlines of B. I wonder if it is possible somehow to filter the list of B objects before the inline formset is rendered, so not all B objects related do A gets into the formset.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可以将自己的管理器写入您的模型(特别是表单集)并使用它。
http://docs.djangoproject.com/en/dev/topics/db /经理/
You can write your own manager to you model (special for formset) and use it.
http://docs.djangoproject.com/en/dev/topics/db/managers/
在 Django 3 中,您应该使用 formfield_for_foreignkey。
这是一个工作示例:
这样,在表格视图中,FK 字段下拉列表中的选项将被过滤。
In Django 3, you should use formfield_for_foreignkey.
here is a working example :
With this, in your Tabular View, the choices in the dropdown of your FK Field will be filtered.
回复自己的问题可能看起来有点奇怪,但我找到了另一个解决方案;)
向表单集提供自定义查询集存在问题,在内联表单集的情况下没有钩子。因此,我对 BaseInlineFormSet 进行了子类化并重写了 get_queryset 方法。然后我只需在 InlineModelAdmin 中提供此表单集即可完成。
示例:
和管理类:
Replying to own question may seem a bit odd but I found another solution ;)
There was a problem to provide custom queryset to a formset, there is no hook in case of inline formsets for this. So I subclassed BaseInlineFormSet and overridden the get_queryset method. Then I just provide this formset in InlineModelAdmin and it's done.
Example:
and admin class: