Forked from acdha/django-1.2.5-lookup_allowed-example.py
Created
May 16, 2011 09:39
-
-
Save andybak/974149 to your computer and use it in GitHub Desktop.
Revisions
-
acdha renamed this gist
Feb 10, 2011 . 1 changed file with 4 additions and 3 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,11 +1,12 @@ class FooAdmin(ModelAdmin): … def lookup_allowed(self, key, value): # NOTE: Django 1.2.5 changed the call signature to add the value # Django 1.2.4 restricted the list of allowed lookups to only those # specified in list_filter or date_hierarchy, which doesn't help when # we need to filter on a list with thousands of options. We'll # override that to allow the few which we actually use: if key in ('related__pk', 'related__custom_field'): return True return super(FooAdmin, self).lookup_allowed(key, value) -
acdha created this gist
Dec 23, 2010 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,11 @@ class FooAdmin(ModelAdmin): … def lookup_allowed(self, lookup): # Django 1.2.4 restricted the list of allowed lookups to only those # specified in list_filter or date_hierarchy, which doesn't help when # we need to filter on a list with thousands of options. We'll # override that to allow the few which we actually use: if lookup in ('related__pk', 'related__custom_field'): return True return super(FooAdmin, self).lookup_allowed(lookup)