[Answered ]-Filtering in django admin using address bar

1👍

in should work, try this in the url

http://bla-bla-bla/admin/app/order/?num__in=11534,11535,11536
👤JamesO

1👍

Don’t forget that whatever you put in the query string has to be allowed for the admin interface. You can’t put in filters that weren’t defined there – ever since this security release https://www.djangoproject.com/weblog/2010/dec/22/security/

Leave a comment