Django-admin list_editable即时启用/禁用(编辑/查看模式检查)

时间:2015-03-10 19:47:41

标签: django django-admin django-modeladmin

我想通过按钮(或类似的东西)更改页面的编辑/查看模式。 编辑模式等于EntityModelAdmin正文中指定的list_editable。 查看模式等于空list_editable。

@admin.register(models.EntityModel)
class EntityModelAdmin(admin.ModelAdmin):
    list_display = ('name', 'barcode', 'short_code', )
    list_editable = ('barcode', 'short_code', )

如何实现这一目标?似乎我应该覆盖一些类/函数来考虑模式触发器的状态。

使用Entity实例的添加/更改页面也可以这样做(所有字段都是只读的)。

2 个答案:

答案 0 :(得分:0)

EntityModel创建proxy模型:

class ProxyEntityModel(EntityModel):
    class Meta:
        proxy = True

然后单独ModelAdmin为它:

class ProxyEntityModelAdmin(admin.ModelAdmin):
    list_display = ('name', 'barcode', )
    list_editable = ('barcode', )

答案 1 :(得分:0)

至于我,最好覆盖changelist_view的方法admin.ModelAdmin

class EntityModelAdmin(admin.ModelAdmin):
    list_display = ('name', 'barcode', 'short_code', )
    list_editable = ('barcode', 'short_code', )

    @csrf_protect_m
    def changelist_view(self, request, extra_context=None):
        """
        The 'change list' admin view for this model.
        Overrided only for add support of edit/view mode switcher.
        """
        ...parent code...
        try:
            cl = ChangeList(request, ...parent code...)

            # Customization for view/edit mode support
            if 'edit_mode' not in request.COOKIES:
                cl.list_editable = ()
        ...parent code...

可能最好覆盖另一种方法。不确定是否有可能只覆盖相当大的changelist_view方法的某些部分而不复制大部分代码(...父代码...)。

按钮切换器可以是这样的:

{% load myapp_various_tags %}  {# load get_item tag for dictionary #}

    <div id="mode">
        <div class="mode_item edit_mode {% if request.COOKIES|get_item:'edit_mode' %}selected{% endif %}" onclick="$.cookie('edit_mode', '1', { path: '/', expires: 30 }); location.reload(true);">
            <div class="header_icon"></div>
            <div class="header_text">{% trans "edit" %}</div>
        </div>
        <div class="mode_item view_mode {% if not request.COOKIES|get_item:'edit_mode' %}selected{% endif %}" onclick="$.cookie('edit_mode', null, { path: '/', expires: -1 }); location.reload(true);">
            <div class="header_icon"></div>
            <div class="header_text">{% trans "view" %}</div>
        </div>
    </div>

myapp_various_tags.py在哪里:

from django.template.defaulttags import register
@register.filter
def get_item(dictionary, key):
    return dictionary.get(key)

可能它不是“真正的方式”,但所有这些都是有效的。

  

同样可以做同样的事情(所有字段都是只读的)   添加/更改实体实例的页面。

django admin: separate read-only view and change view