While using django admin list_filter, it only support one select.For using multiple choices, you can modify URL.?status__exact=a ?status__in=a%2Cb You can filter by using ,(comma).%2C equals to , (comma)And have to add UI cause django admin not support multiple UI.So I customize change_list.html from django admin (for my case, I use suit for admin, so customize change_list.html in suit){% extend..