如何在字段集中显示Django管理员内联模型?

时间:2013-08-22 20:54:28

标签: django django-admin

考虑以下ModelAdmin。在这种情况下,我希望在“无”字段集和Notes字段集之间显示内联“Book”UI。这可能吗?

class AuthorAdmin(admin.ModelAdmin):
    inlines = [BookInline]

    fieldsets = (
            (None, {
                'fields': ('author_name', 'date_of_birth')
            }),
            ('Notes', {
                'fields': (['notes'])
            }),
    )

3 个答案:

答案 0 :(得分:14)

Bertrand Bortage在此处发布了另一个解决方案:https://groups.google.com/forum/#!topic/django-users/yUq2Nvx_4eM

  

迟到的回复说我刚推出一个相当干净的解决方案   我的一个项目中的问题:   https://github.com/dezede/dezede/commit/ed13ccaf34494e71fd913fd785c229052f6acdc8

     

我们的想法是在你的中定义fieldsets_and_inlines_order   ModelAdmin(s),可迭代的'f'和'i'字符(用于“fieldset”)   和“内联”),指定第一个字段集和之间的顺序   内联。如果len(fieldsets_and_inlines_order)< len(fieldsets)+   len(inlines),其余遵循原始行为(fieldsets   首先,然后是所有内联)。

     

示例:您有5个字段集和3个内联,定义   fieldsets_and_inlines_order =('f','f','i','f','i')会给你:   fieldset fieldset inline fieldset inline fieldset fieldset inline Hope   它有所帮助,Bertrand

我有另一个值得考虑的想法。在每个内联的fieldset中创建一个只读占位符字段,然后使用jQuery将内联移动到每个占位符的位置。像这样的东西(jQuery省略,因为我还没写过):

fieldsets = (
        (None, {
            'fields': (
                ('inline_images',)
                ('thumbnail_image',),
                ('inline_authors',)
                ('title', 'is_active', 'order',)
            ),
        }),
    )

readonly_fields = ('inline_images', 'inline_authors')

inline_images = '<span class="replaceme inline_images"></span>'
inline_images.allow_tags = True
inline_authors = '<span class="replaceme inline_authors"></span>'
inline_authors.allow_tags = True

还有一件事 - 有一个开放的Django问题要求内联的这种定位:https://code.djangoproject.com/ticket/4848

答案 1 :(得分:6)

不幸的是,使用(标准模板)django是不可能的。如果查看change_form的模板,可以看到在字段集之后始终单独呈现内联: https://github.com/django/django/blob/master/django/contrib/admin/templates/admin/change_form.html

我看到的唯一解决方法是根据您想要的顺序编写自定义模板。

答案 2 :(得分:1)

我构建了另一个非常通用的解决方案......

在您的admin.py中为内联添加一个新字段:

class YourModelInline(admin.TabularInline):
    model = YourModel
    after_field = "fieldname_of_field_before_inline"

然后自定义包含内联的模型的AdminClass的render_change_form:

class EditModelAdmin(model.ModelAdmin):
    inlines = [YourModelInline,]

    def render_change_form(self, request, context, add=False, change=False, form_url='', obj=None):
        sorted_inline_formsets = {}
        inline_admin_formsets = context['inline_admin_formsets']
        formsets_to_remove = []

        for inline_formset in inline_admin_formsets:
            if hasattr(inline_formset.opts, 'after_field'):
                fieldname = inline_formset.opts.after_field
                if fieldname in sorted_inline_formsets:
                    sorted_inline_formsets[fieldname].append(inline_formset)
                else:
                    sorted_inline_formsets.update({
                        fieldname: [inline_formset,]
                    })
                formsets_to_remove.append(inline_formset)
        for inline_formset in formsets_to_remove:
            inline_admin_formsets.remove(inline_formset)

        context.update({
            'sorted_inline_formsets': sorted_inline_formsets,
            'inline_admin_formsets': inline_admin_formsets
        })
        return super(EditModelAdmin, self).render_change_form(request, context, add=add,
                                                       change=change, obj=obj, form_url=form_url)

我们正在将带有额外字段的所有内联移动到自己的字典中,并将字段名作为键... 要正确呈现它,请创建文件/templates/admin/includes/fieldset.html,其中包含以下内容的标准django fieldset.html:

&#13;
&#13;
{% load custom_filter %}
<fieldset class="module aligned {{ fieldset.classes }}">
        {% if fieldset.name %}<h2>{{ fieldset.name }}</h2>{% endif %}
        {% if fieldset.description %}
            <div class="description">{{ fieldset.description|safe }}</div>
        {% endif %}
        {% for line in fieldset %}
            <div class="form-row{% if line.fields|length_is:'1' and line.errors %} errors{% endif %}{% if not line.has_visible_field %} hidden{% endif %}{% for field in line %}{% if field.field.name %} field-{{ field.field.name }}{% endif %}{% endfor %}">
                {% if line.fields|length_is:'1' %}{{ line.errors }}{% endif %}
                {% for field in line %}
                    <div{% if not line.fields|length_is:'1' %} class="field-box{% if field.field.name %} field-{{ field.field.name }}{% endif %}{% if not field.is_readonly and field.errors %} errors{% endif %}{% if field.field.is_hidden %} hidden{% endif %}"{% elif field.is_checkbox %} class="checkbox-row"{% endif %}>
                        {% if not line.fields|length_is:'1' and not field.is_readonly %}{{ field.errors }}{% endif %}
                        {% if field.is_checkbox %}
                            {{ field.field }}{{ field.label_tag }}
                        {% else %}
                            {{ field.label_tag }}
                            {% if field.is_readonly %}
                                <div class="readonly">{{ field.contents }}</div>
                            {% else %}
                                {{ field.field }}
                            {% endif %}
                        {% endif %}
                        {% if field.field.help_text %}
                            <div class="help">{{ field.field.help_text|safe }}</div>
                        {% endif %}
                    </div>
                    {% if field.field.name %}
                        {% with field.field.name as fieldname %}
                            {% if sorted_inline_formsets|get_dict_value:fieldname != False %}
                                {% for inline_admin_formset in sorted_inline_formsets|get_dict_value:fieldname %}
                                    {% include inline_admin_formset.opts.template %}
                                {% endfor %}
                            {% endif %}
                        {% endwith %}
                    {% endif %}
                {% endfor %}
            </div>
        {% endfor %}
    </fieldset>
&#13;
&#13;
&#13;

这将在相应的字段后添加排序的内联...现在您只需要custom_filter来处理django模板中的字典,创建templatetags / custom_filter.py并添加:

@register.filter
def get_dict_value(dict, key):
    if key in dict:
        return dict[key]
    else:
        return False

并且瞧瞧:您可以在任何内联中输入任何字段名称,以便在该字段之后添加它...设置有点工作但是如果您有几个内联排序它可能是一种更清洁的方式......