Django 管理字段集排除或标题字段

发布于 2024-11-29 17:42:37 字数 145 浏览 2 评论 0原文

我正在尝试创建一个新的管理视图: 1.有某种标题 2.排除我的3个字段

Fieldset给了我我想要的标题,但似乎不支持“排除”,而且我一直无法找到“标题”字段。

有没有: 1.一个我不知道的头字段 2. 排除 Fieldset 中字段的方法?

I'm trying to create a new admin view that:
1. has a header of some kind
2. excludes 3 of my fields

Fieldset gives me the header I want, but doesn't seem to support "exclude", and I have not been able to find a "header" field.

Is there:
1. a header field that I don't know about
2. a way to exclude fields within Fieldset?

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

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

发布评论

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

评论(1

夜深人未静 2024-12-06 17:42:37

不幸的是,你无法按照你想要的方式排除某些事情。您必须详细列出要包含的每个字段,如下所示:

fieldsets = (
    ('Basic Information', {
        'fields': ('first_name', 'last_name', 'address', )
    }),
)

等等!

You can't exclude things the way you want to, unfortunately. You'll have to verbosely list every field that you want to include, like this:

fieldsets = (
    ('Basic Information', {
        'fields': ('first_name', 'last_name', 'address', )
    }),
)

And so on!

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