darklow / django-suit

Modern theme for Django admin interface
http://djangosuit.com/
Other
2.32k stars 704 forks source link

suit_list_filter_horizontal not filtering #655

Closed cometsong closed 6 years ago

cometsong commented 6 years ago

Django version: 1.11.7 Django Suit version: 2.0a1 (latest commit # 613c84c) Python version: 3.6.1

Issue: I have in my admin.py:

list_filter = ( 'project_code', 'sample_type', .... , )
suit_list_filter_horizontal = list_filter

but although the horizontal filter displays, it does no selection filtering, just returns the same page with the query_string: ?q=. When I comment out that line, the original vertical filter lists work successfully.

How can I troubleshoot this? Do you know which methods you've overridden that I can add logging statements into? (I have the install from the cloned git repo.)

Thanks!

cometsong commented 6 years ago

Decided not to bother any more troubleshooting this. Case closed. :)

gamesbook commented 6 years ago

Is it working now?

cometsong commented 6 years ago

No it's still not working. I'm going with a different technique.