django-more-admin-filters
Additional filters for django-admin.
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 on this page — 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
django-more-admin-filters on PyPI
pip
pip install django-more-admin-filtersuv
uv add django-more-admin-filterspoetry
poetry add django-more-admin-filtersInstalling 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 | not specified |
| Install friction | low — pure-Python wheel |
| Runtime dependencies | 1 — Django |
| Maintenance | aging — 219 days since the last release |
| Last repo commit | |
| First released | |
| Downloads | 101,728/month — #12,920 on PyPI (30-day window, as of 2026-08-14) |
| Known vulnerabilities | none known (OSV.dev, checked 2026-08-14) |
Evidence: django_more_admin_filters-1.15-py3-none-any.whl
Tags
More Software Development packages
Provides backported and experimental type hints…
permissive · top 100 on PyPI
numpyNumPy provides an N-dimensional array object…
permissive · top 100 on PyPI
fastapiFastAPI is a Python web framework for building…
permissive · top 100 on PyPI
annotated-docProvides a way to document function parameters,…
permissive · top 100 on PyPI
typerTyper builds command-line applications from…
permissive · top 1,000 on PyPI
distlibDistlib provides low-level packaging utilities…
permissive · top 1,000 on PyPI
django-admin-autocomplete-filterAdds autocomplete-based filtering to Django…
copyleft · top 15,000 on PyPI
django-admin-list-filter-dropdownRenders Django admin list filters as dropdown…
permissive · top 5,000 on PyPI
django-admin-rangefilterAdds date range, datetime range, and numeric…
permissive · top 5,000 on PyPI
django-sortedm2mProvides a drop-in replacement for Django's…
permissive · top 15,000 on PyPI
django-etcProvides a collection of small utility…
permissive · top 15,000 on PyPI
django-admin-csvexportAdds a Django admin action that exports…
permissive · top 15,000 on PyPI
django-mathfiltersProvides Django template filters for basic…
permissive · top 15,000 on PyPI
django-multiselectfieldAdds model and form fields to Django that let…
copyleft · top 5,000 on PyPI
django-better-admin-arrayfieldProvides a list-based widget for Django's…
permissive · top 15,000 on PyPI
django-filterDjango-filter adds dynamic QuerySet filtering…
permissive · top 5,000 on PyPI