I like to write fast and dirty query strings directly to the Django admin URL. For example: /admin/myapp/mymodel/?pub_date__year=2011
Operators
AND are just as simple: /admin/myapp/mymodel/?pub_date__year=2011&author=Jim
I am wondering if the "OR" operator can be returned via the URL. Has anyone heard of such functionality?
source share