如何限制 django admin 内联表单集

发布于 2024-10-28 02:24:01 字数 110 浏览 1 评论 0原文

如何限制 django admin 中的内联表单集?

问题:

我有一个与 B 具有 1 到 n 关系的表 A。表 A 应该至少有一个表 B 项目,最多有 5 个表 B 项目。

How do you limit the inline formset in django admin?

Problem:

I have a table A with 1 to n relationship with B. Table A should have at least one Table B item and a max of 5 Table B items.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(3

玩套路吗 2024-11-04 02:24:01

http://docs.djangoproject.com/en/dev/ref/contrib/admin /#inlinemodeladmin-options

Inline 定义中指定 max_num 以限制数量。

extra 指定要显示的空白内联数量。

是否需要 1 内联?如果表 B 未填充至少 1 行,您想触发验证错误吗?

http://docs.djangoproject.com/en/dev/ref/contrib/admin/#inlinemodeladmin-options

Specify max_num in your Inline definition to limit the number.

extra specifies how many blank inlines to show.

Is the 1 inline required? As in you want to trigger a validation error if table B isn't filled with at least 1 row?

π浅易 2024-11-04 02:24:01

您可以使用 Django 管理内联 表单集

from django.forms.models import BaseInlineFormSet

MAX_RECORDS = 10

class ExampleFormSet(BaseInlineFormSet): 
    def get_queryset(self) :
        qs = super(ExampleFormSet, self).get_queryset()
        return qs.order_by('-date_started')[:MAX_RECORDS]

class ExampleAdmin(models.TabularInline):
    model = models.Example
    formset = ExampleFormSet

来源

这样,您就可以根据需要过滤、排序和限制结果。

You can do this using a Django admin inline formset.

from django.forms.models import BaseInlineFormSet

MAX_RECORDS = 10

class ExampleFormSet(BaseInlineFormSet): 
    def get_queryset(self) :
        qs = super(ExampleFormSet, self).get_queryset()
        return qs.order_by('-date_started')[:MAX_RECORDS]

class ExampleAdmin(models.TabularInline):
    model = models.Example
    formset = ExampleFormSet

Source

This way, you can filter, order, and limit your results however you want.

々眼睛长脚气 2024-11-04 02:24:01

内联中添加按钮的启用/禁用是通过

您可以添加到内联类中的 _has_add_permission 方法来管理的:

def _has_add_permission(self, request, obj=None):
   # add/remove possibility to add a line to an inline
    if obj.table_b_items.count() < 5:
        return True
    else:
        return False

The enabling / disabling of the add button in an inline is managed through the _has_add_permission method

you could add to your inline class:

def _has_add_permission(self, request, obj=None):
   # add/remove possibility to add a line to an inline
    if obj.table_b_items.count() < 5:
        return True
    else:
        return False
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文