2

我想在 django 1.5 中创建一个列表过滤器与我的字段相关,所以我不能像文档中那样使用 SimpleListFilter。

由于用户权限的原因,我需要这样做

我有这个

class Stores_Contactos_Stores_ListFilter(RelatedFieldListFilter):
    title = _('Por Tiendas')
    parameter_name = 'store'

    def lookups(self, request, model_admin):
        return (
            ('80s', _('in the eighties')),
            ('90s', _('in the nineties')),
        )

class Store_Contacts_Admin(admin.ModelAdmin):
    list_filter = ('date_create', ('store', Stores_Contactos_Stores_ListFilter))

保持不变的查找,好像他没有对过滤器进行任何更改

4

1 回答 1

3

admin包中RelatedFieldListFilter类使用的lookups方法,init方法集

self.lookup_choices = field.get_choices(include_blank=False)

我在我的类中重写了init方法

def __init__(self, field, request, params, model, model_admin, field_path):
    super(Stores_Contactos_Stores_ListFilter, self).__init__(
        field, request, params, model, model_admin, field_path)
    if request.user.is_superuser:
        self.lookup_choices = Stores.objects.values_list('store', 'store__name',)
    ....
于 2013-05-17T14:51:22.587 回答