Django - 使 TabulerInline 的类折叠

发布于 2024-10-02 23:51:09 字数 61 浏览 1 评论 0原文

我只想隐藏/显示管理界面中的内联,例如提供类': ['collapse']})。有什么办法可以实现这一点吗?

I just want to hide/show the inlines in admin interface like providing classes': ['collapse']}). Is there any way to achieve this?

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

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

发布评论

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

评论(1

二货你真萌 2024-10-09 23:51:09

我不知道如何以官方方式执行此操作,但我的第一个想法是覆盖管理 html 模板并放置一些简短的 jQuery 脚本,例如:

    $('inline-panel-selector').click(function() {$(this).toggle(200);});

编辑:

至于应该覆盖哪个模板,请看这里:

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 ,它可能看起来大致如下:

{% extends "change_form.html" %}
{% block footer %}
    {{ block.super }}
    <script type="text/javascript">
        $(function (){
            $('inline-panel-selector').click(function() {$(this).toggle(200);});
        });
    </script>
 {% endblock %}

请注意,我不确定 $ 符号是否可用,有些东西告诉我 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:

    $('inline-panel-selector').click(function() {$(this).toggle(200);});

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:

{% extends "change_form.html" %}
{% block footer %}
    {{ block.super }}
    <script type="text/javascript">
        $(function (){
            $('inline-panel-selector').click(function() {$(this).toggle(200);});
        });
    </script>
 {% endblock %}

Note that I'm not sure if $ symbol is available, something tells me that Django doesn't expose it, using something like django.jQuery instead.

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