<small id='0Ubbx'></small><noframes id='0Ubbx'>

      <bdo id='0Ubbx'></bdo><ul id='0Ubbx'></ul>
  1. <tfoot id='0Ubbx'></tfoot>
    1. <i id='0Ubbx'><tr id='0Ubbx'><dt id='0Ubbx'><q id='0Ubbx'><span id='0Ubbx'><b id='0Ubbx'><form id='0Ubbx'><ins id='0Ubbx'></ins><ul id='0Ubbx'></ul><sub id='0Ubbx'></sub></form><legend id='0Ubbx'></legend><bdo id='0Ubbx'><pre id='0Ubbx'><center id='0Ubbx'></center></pre></bdo></b><th id='0Ubbx'></th></span></q></dt></tr></i><div id='0Ubbx'><tfoot id='0Ubbx'></tfoot><dl id='0Ubbx'><fieldset id='0Ubbx'></fieldset></dl></div>
      <legend id='0Ubbx'><style id='0Ubbx'><dir id='0Ubbx'><q id='0Ubbx'></q></dir></style></legend>
    2. 如何在 Django Admin 中仅折叠一个字段?

      How To Collapse Just One Field in Django Admin?(如何在 Django Admin 中仅折叠一个字段?)
    3. <legend id='HAH3o'><style id='HAH3o'><dir id='HAH3o'><q id='HAH3o'></q></dir></style></legend>

          • <bdo id='HAH3o'></bdo><ul id='HAH3o'></ul>
          • <small id='HAH3o'></small><noframes id='HAH3o'>

            <i id='HAH3o'><tr id='HAH3o'><dt id='HAH3o'><q id='HAH3o'><span id='HAH3o'><b id='HAH3o'><form id='HAH3o'><ins id='HAH3o'></ins><ul id='HAH3o'></ul><sub id='HAH3o'></sub></form><legend id='HAH3o'></legend><bdo id='HAH3o'><pre id='HAH3o'><center id='HAH3o'></center></pre></bdo></b><th id='HAH3o'></th></span></q></dt></tr></i><div id='HAH3o'><tfoot id='HAH3o'></tfoot><dl id='HAH3o'><fieldset id='HAH3o'></fieldset></dl></div>

                <tbody id='HAH3o'></tbody>
                <tfoot id='HAH3o'></tfoot>
              • 本文介绍了如何在 Django Admin 中仅折叠一个字段?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                问题描述

                django 管理员允许您指定字段集.您正确地构建了一个将不同字段组合在一起的元组.您还可以为某些字段组指定类.其中一个类是折叠,它将将该字段隐藏在可折叠区域下.这有利于隐藏很少使用或高级的字段以保持 UI 整洁.

                The django admin allows you to specify fieldsets. You properly structure a tuple that groups different fields together. You can also specify classes for certain groups of fields. One of those classes is collapse, which will hide the field under a collapsable area. This is good for hiding rarely used or advanced fields to keep the UI clean.

                但是,我有一种情况,我想在许多不同的应用程序上隐藏一个单独的字段.为了在每个 admin.py 文件中创建一个完整的字段集规范,只需将一个字段放入折叠区域,这将需要大量输入.这也造成了维护困难的情况,因为我每次编辑关联模型时都必须编辑字段集.

                However, I have a situation where I want to hide just one lonesome field on many different apps. This will be a lot of typing to create a full fieldset specification in every admin.py file just to put one field into the collapsed area. It also creates a difficult maintenance situation because I will have to edit the fieldset every time I edit the associated model.

                我可以使用 排除选项.我想要类似的崩溃.这可能吗?

                I can easily exclude the field entirely using the exclude option. I want something similar for collapse. Is this possible?

                推荐答案

                我知道 Django 没有内置的方法来做这件事,但我可以想到几种方法,你可以一次性做某事,而不必手动修改大量的字段集.

                Django doesn't have a built in way of doing this that I'm aware of but I can think of a couple of ways you could do something once, rather than having to manually modify lots of fieldsets.

                一种方法是使用 javascript 重写页面标记.也许 javascript 可以有一个字段名列表,当它找到其中一个时,它会隐藏该字段和它的标签,并向页面添加一个按钮来切换这些不可见的字段.

                One approach would be to use javascript to rewrite the page markup. Maybe the javascript could have a list of fieldnames and whenever it finds one of those it hides the field and it's label and adds a button to the page to toggle these invisible fields.

                另一种方法只涉及 python.通常,您只需将管理中的字段集属性指定为元组.但是您可以将其指定为一个导入函数,该函数将通常的元组作为参数.在您的设置文件中,您可以指定要隐藏的字段名列表.然后,您需要编写一个返回修改后的元组的函数,将任何与您的字段名匹配的字段与折叠类一起移动到一个新的字段集中.

                The other approach would just involve python. Normally you just specify the fieldsets attribute in the admin as a tuple. But you could specify it as an imported function which takes the usual tuple as an argument. In your settings file you could specify a list of fieldnames you want to hide. You then need to write a function that returns a modified tuple, moving any fields that match one of your fieldnames into a new fieldset along with the collapse class.

                例如,在您的管理类中,您可以执行类似的操作(您需要编写和导入 hide_fields).

                For example in your admin class you could do something like this (you need to write and import hide_fields).

                fieldsets = hide_fields(
                    (None,
                        {'fields':('title', 'content')}
                    )
                )
                

                这可能最终被解释为以下内容,假设设置文件中的内容是您想要隐藏的内容:

                This might end up being interpreted as the following, assuming content is in the settings file as something you want to hide:

                fieldsets = (
                    (None,
                        {'fields':('title',)}
                    ),
                    ('Extra',
                        {
                            'fields':  ('content',),
                            'classes':('collapse',),
                        }
                    ),
                )
                

                这篇关于如何在 Django Admin 中仅折叠一个字段?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

                相关文档推荐

                What happens when you compare 2 pandas Series(当你比较 2 个 pandas 系列时会发生什么)
                Quickly find differences between two large text files(快速查找两个大文本文件之间的差异)
                Python - Compare 2 files and output differences(Python - 比较 2 个文件和输出差异)
                Why do comparisions between very large float values fail in python?(为什么在 python 中非常大的浮点值之间的比较会失败?)
                Dictionary merge by updating but not overwriting if value exists(字典通过更新合并,但如果值存在则不覆盖)
                Find entries of one text file in another file in python(在python中的另一个文件中查找一个文本文件的条目)

              • <legend id='OabFf'><style id='OabFf'><dir id='OabFf'><q id='OabFf'></q></dir></style></legend>

                        • <bdo id='OabFf'></bdo><ul id='OabFf'></ul>
                          <tfoot id='OabFf'></tfoot>
                        • <i id='OabFf'><tr id='OabFf'><dt id='OabFf'><q id='OabFf'><span id='OabFf'><b id='OabFf'><form id='OabFf'><ins id='OabFf'></ins><ul id='OabFf'></ul><sub id='OabFf'></sub></form><legend id='OabFf'></legend><bdo id='OabFf'><pre id='OabFf'><center id='OabFf'></center></pre></bdo></b><th id='OabFf'></th></span></q></dt></tr></i><div id='OabFf'><tfoot id='OabFf'></tfoot><dl id='OabFf'><fieldset id='OabFf'></fieldset></dl></div>

                          <small id='OabFf'></small><noframes id='OabFf'>

                            <tbody id='OabFf'></tbody>