我想在 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))
保持不变的查找,好像他没有对过滤器进行任何更改