skillfed

django-more-admin-filters

Additional filters for django-admin.

django-more-admin-filters v1.15 101.7K downloads/30d#12,920 on PyPI111
Permissive license BSD License AGING released

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-filters

uv

uv add django-more-admin-filters

poetry

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 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

Development Status :: 5 - Production/StableEnvironment :: Web EnvironmentFramework :: DjangoFramework :: Django :: 2.2Framework :: Django :: 3.0Framework :: Django :: 3.1Framework :: Django :: 3.2Framework :: Django :: 4.0Framework :: Django :: 4.1Framework :: Django :: 4.2Framework :: Django :: 5.0Framework :: Django :: 5.1Framework :: Django :: 5.2Framework :: Django :: 6.0Intended Audience :: DevelopersLicense :: OSI Approved :: BSD LicenseOperating System :: OS IndependentProgramming Language :: PythonProgramming Language :: Python :: 3Programming Language :: Python :: 3.10Programming Language :: Python :: 3.11Programming Language :: Python :: 3.12Programming Language :: Python :: 3.13Programming Language :: Python :: 3.7Programming Language :: Python :: 3.8Programming Language :: Python :: 3.9Topic :: Internet :: WWW/HTTP :: Dynamic ContentTopic :: Software DevelopmentTopic :: Software Development :: Libraries :: Application Frameworks

Tags

django admin filters dropdownmulti-select admin filtersdjango admin filter widgetsannotated field filters djangodjango admin list filter extensionsadvanced django admin filtering
django-adminui-filtering

More Software Development packages

typing-extensions

Provides backported and experimental type hints…

permissive · top 100 on PyPI

numpy

NumPy provides an N-dimensional array object…

permissive · top 100 on PyPI

fastapi

FastAPI is a Python web framework for building…

permissive · top 100 on PyPI

annotated-doc

Provides a way to document function parameters,…

permissive · top 100 on PyPI

typer

Typer builds command-line applications from…

permissive · top 1,000 on PyPI

distlib

Distlib provides low-level packaging utilities…

permissive · top 1,000 on PyPI

django-admin-autocomplete-filter

Adds autocomplete-based filtering to Django…

copyleft · top 15,000 on PyPI

django-admin-list-filter-dropdown

Renders Django admin list filters as dropdown…

permissive · top 5,000 on PyPI

django-admin-rangefilter

Adds date range, datetime range, and numeric…

permissive · top 5,000 on PyPI

django-sortedm2m

Provides a drop-in replacement for Django's…

permissive · top 15,000 on PyPI

django-etc

Provides a collection of small utility…

permissive · top 15,000 on PyPI

django-admin-csvexport

Adds a Django admin action that exports…

permissive · top 15,000 on PyPI

django-mathfilters

Provides Django template filters for basic…

permissive · top 15,000 on PyPI

django-multiselectfield

Adds model and form fields to Django that let…

copyleft · top 5,000 on PyPI

django-better-admin-arrayfield

Provides a list-based widget for Django's…

permissive · top 15,000 on PyPI

django-filter

Django-filter adds dynamic QuerySet filtering…

permissive · top 5,000 on PyPI