Django 管理表单 - 如何显示两个“字段集”水平形式?
如何在表单中水平显示两个“字段集”?
注意:我的意思不是水平显示多个字段,而是多个字段集。
谢谢你!
How to show two "fieldsets" horizontally in a form?
Note: I don't mean show multiple fields horizontally, but multiple fieldsets.
Thank you!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
每个字段集,除了字段元组之外,还采用一个
classes
参数,它是要应用于字段集的 CSS 类的列表。您可以将其与通过 ModelAdminmedia
类加载的自定义样式表结合使用,以通过 CSS 定位内容。Each fieldset, in addition to the tuple of fields, also takes a
classes
argument which is a list of CSS classes to apply to the fieldset. You can use this in conjunction with a custom stylesheet loaded via the ModelAdminmedia
class to position things via CSS.我从未尝试过,但请查看 覆盖管理模板(特别是 change_form.html 和迭代字段集的部分)。
I've never tried it, but look into Overriding Admin Templates (specifically change_form.html and the part that iterates through fieldsets).