Skip to content

Instantly share code, notes, and snippets.

@collinanderson
Last active August 29, 2015 14:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save collinanderson/c081d12537b107431f38 to your computer and use it in GitHub Desktop.
Save collinanderson/c081d12537b107431f38 to your computer and use it in GitHub Desktop.
admin search
qs = Model.objects.all()
for kw in q.split():
q = models.Q()
for f in fields:
q |= Q('%s__iexact' % f.name: kw)
qs = qs.filter(q)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment