Django 管理字段集排除或标题字段
我正在尝试创建一个新的管理视图: 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不幸的是,你无法按照你想要的方式排除某些事情。您必须详细列出要包含的每个字段,如下所示:
等等!
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:
And so on!