--- id: django-more-admin-filters version: "1.15" license: BSD License license_treatment: permissive maintenance: aging --- # django-more-admin-filters — Additional filters for django-admin. License: permissive · Maintenance: aging · Downloads: 101.7K/mo ## What it is and what it does django-more-admin-filters extends Django's admin interface with a set of filter classes designed to replace the default list filters with more user-friendly widgets. It focuses on dropdown-based filtering, multi-select options, and support for annotated model attributes—features the standard Django admin does not provide out of the box. The package includes filters for regular fields, related fields, choice fields, and annotated attributes, allowing developers to build more intuitive filtering experiences in the admin backend. The package is installed as a Django app and integrated into ModelAdmin classes by specifying filter classes in the list_filter attribute. For annotated attributes, filters must be initialized with the attribute name explicitly. It has been in production use since 2020 and supports Django versions from 2.2 through 6.0, though recent maintenance activity is limited. Use it for: - Replace default admin filters with dropdown widgets for cleaner, more compact filter panels in large admin interfaces. - Implement multi-select filtering to allow users to filter by multiple values simultaneously rather than one at a time. - Add filtering capabilities to computed/annotated model attributes that the standard Django admin cannot filter directly. - Improve UX in admin list views by using familiar dropdown and checkbox widgets instead of radio buttons or link lists. - Build admin interfaces for models with many related objects where choice-limited filtering reduces noise. ## Worth the install? AI-flagged interpretation of the facts above — verify before relying. Provides a collection of Django admin filter classes—dropdown, multi-select, and annotation-based filters—that extend the built-in admin filtering interface with more flexible widget options. Yes, if you are actively maintaining a Django admin interface and need better filter widgets. The package is stable (Production/Stable status), has no known vulnerabilities, and carries a permissive license. However, maintenance is aging (last commit 219 days ago); adopt it only if you can tolerate slow or infrequent updates, or if you are willing to fork or patch it yourself if Django changes break compatibility. ## Install pip install django-more-admin-filters uv add django-more-admin-filters poetry add django-more-admin-filters ## Installing django-more-admin-filters Before you install: Low install friction; single runtime dependency on Django. Last commit 2026-01-07 and 219 days since release indicate aging maintenance, though the repository is not archived and carries Production/Stable status. License in practice: BSD License (permissive) places no restrictions on commercial or proprietary use; you may modify and redistribute freely under BSD terms. Quickstart: pip install django-more-admin-filters # In settings.py INSTALLED_APPS = [ 'django_more_admin_filters', ] # In admin.py from django_more_admin_filters import MultiSelectDropdownFilter class MyModelAdmin(admin.ModelAdmin): list_filter = [('myfield', MultiSelectDropdownFilter)] Verify before relying: - Whether annotation filters beyond BooleanAnnotationFilter are planned or available in version 1.15. - Performance characteristics when filtering large querysets with multi-select filters. - Compatibility with custom user models or non-standard Django admin configurations. ## Package facts - License: BSD License (permissive) - Python support: unspecified - Install friction: low - Maintenance: aging - Downloads: 101.7K/month (top 15,000 on PyPI) - Known vulnerabilities: none known ## Tags django admin filters dropdown, multi-select admin filters, django admin filter widgets, annotated field filters django, django admin list filter extensions, advanced django admin filtering, django-admin, ui-filtering [View on SkillFed](https://skillfed.io/packages/django-more-admin-filters) · [View on PyPI](https://pypi.org/project/django-more-admin-filters/)