Django 管理,过滤内联表单集的对象

发布于 2024-08-18 21:45:43 字数 174 浏览 5 评论 0原文

我有一个内联表单集,我想排除一些模型对象在表单集中显示。

例如。模型 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

动次打次papapa 2024-08-25 21:45:44

您可以将自己的管理器写入您的模型(特别是表单集)并使用它。

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/

我的黑色迷你裙 2024-08-25 21:45:44

在 Django 3 中,您应该使用 formfield_for_foreignkey。

这是一个工作示例:

class CaracteristiqueInline(admin.TabularInline):
  model = Caracteristique
  formset = FiltreCaracteristiqueInline

  def formfield_for_foreignkey(self, db_field, request, **kwargs):
    if db_field.name == "id_Champ": # The FK in my table Caracteristique
        kwargs["queryset"] = Champ.objects.filter(est_DC_Champ=False)
        # Champ is the parent table of Caracteristique
        # est_DC_Champ is a field of the table Champ
    return super().formfield_for_foreignkey(db_field, request, **kwargs)
  extra = 0

这样,在表格视图中,FK 字段下拉列表中的选项将被过滤。

In Django 3, you should use formfield_for_foreignkey.

here is a working example :

class CaracteristiqueInline(admin.TabularInline):
  model = Caracteristique
  formset = FiltreCaracteristiqueInline

  def formfield_for_foreignkey(self, db_field, request, **kwargs):
    if db_field.name == "id_Champ": # The FK in my table Caracteristique
        kwargs["queryset"] = Champ.objects.filter(est_DC_Champ=False)
        # Champ is the parent table of Caracteristique
        # est_DC_Champ is a field of the table Champ
    return super().formfield_for_foreignkey(db_field, request, **kwargs)
  extra = 0

With this, in your Tabular View, the choices in the dropdown of your FK Field will be filtered.

怂人 2024-08-25 21:45:43

回复自己的问题可能看起来有点奇怪,但我找到了另一个解决方案;)

向表单集提供自定义查询集存在问题,在内联表单集的情况下没有钩子。因此,我对 BaseInlineFormSet 进行了子类化并重写了 get_queryset 方法。然后我只需在 InlineModelAdmin 中提供此表单集即可完成。

示例:

class MyFormSet(BaseInlineFormSet):
    def get_queryset(self):
        if not hasattr(self, '_queryset'):
            qs = super(MyFormSet, self).get_queryset().filter(main=False)
            self._queryset = qs
        return self._queryset

和管理类:

class MyInline(admin.TabularInline):
    model = m.MyModel
    formset =  MyFormSet
    ...

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:

class MyFormSet(BaseInlineFormSet):
    def get_queryset(self):
        if not hasattr(self, '_queryset'):
            qs = super(MyFormSet, self).get_queryset().filter(main=False)
            self._queryset = qs
        return self._queryset

and admin class:

class MyInline(admin.TabularInline):
    model = m.MyModel
    formset =  MyFormSet
    ...
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文