在 Django 管理中,使用 filter_horizontal 时如何增加 ManyToMany 字段小部件的宽度?
在 Django 管理中,使用 filter_horizontal 时如何增加 ManyToMany 字段小部件的宽度?
In Django admin, how can I increase the width of the ManyToMany field's widget when using filter_horizontal?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 ModelAdmin 字段集 您想要更改并添加额外的样式表:
否则您将不得不编写自己的管理模板或小部件。
You could apply custom classes to the fields using ModelAdmin Fieldsets you wanted to change and add an extra stylesheet with:
Otherwise you'll have to write your own admin templates or widgets.