Django - 使 TabulerInline 的类折叠
我只想隐藏/显示管理界面中的内联,例如提供类': ['collapse']})。有什么办法可以实现这一点吗?
I just want to hide/show the inlines in admin interface like providing classes': ['collapse']}). Is there any way to achieve this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我不知道如何以官方方式执行此操作,但我的第一个想法是覆盖管理 html 模板并放置一些简短的 jQuery 脚本,例如:
编辑:
至于应该覆盖哪个模板,请看这里:
http://docs.djangoproject.com/en/dev/ref /contrib/admin/#overriding-admin-templates
http://docs.djangoproject.com/en/dev/ref/contrib/admin/#templates-which-may-be-overridden-per-app-or-model
- 我认为应该是< code>change_form.html ,它可能看起来大致如下:
请注意,我不确定
$
符号是否可用,有些东西告诉我 Django 不会使用某些东西公开它就像 django.jQuery 一样。I don't know how to do this the official way, but my first thought is to override admin html template and put there some short jQuery script like:
EDIT:
As for which template should be overriden, take a look here:
http://docs.djangoproject.com/en/dev/ref/contrib/admin/#overriding-admin-templates
http://docs.djangoproject.com/en/dev/ref/contrib/admin/#templates-which-may-be-overridden-per-app-or-model
-- I think it should be
change_form.html
and it could look roughly like this:Note that I'm not sure if
$
symbol is available, something tells me that Django doesn't expose it, using something likedjango.jQuery
instead.