--- id: django-admin-list-filter-dropdown version: "1.0.3" license: MIT License license_treatment: permissive maintenance: dormant --- # django-admin-list-filter-dropdown — Use dropdowns in Django admin list filter License: permissive · Maintenance: dormant · Downloads: 1.3M/mo ## What it is and what it does django-admin-list-filter-dropdown is a Django admin extension that replaces the default checkbox-based filter sidebar with dropdown menus. When a model field has many distinct values, the standard Django admin filter becomes unwieldy—this package solves that by rendering filters as compact dropdowns instead. It provides filter classes for regular fields, choice fields, and foreign key relationships. The package is lightweight, with no runtime dependencies beyond Django itself. It works by providing a custom filter template and filter classes that integrate directly into Django's admin configuration. Installation is straightforward: add it to INSTALLED_APPS and swap the filter class in your admin definitions. The implementation is based on established patterns from the Django community. Use it for: - Reduce sidebar clutter in Django admin when a model has a field with many distinct values to filter by. - Improve usability of Django admin for end users by replacing long scrollable filter lists with dropdown selections. - Customize Django admin filtering for choice fields and foreign key relationships without writing custom filter logic. - Maintain a cleaner admin interface layout when working with categorical data or status fields with many options. ## Worth the install? AI-flagged interpretation of the facts above — verify before relying. Renders Django admin list filters as dropdown menus instead of long checkbox lists, reducing clutter when filtering by fields with many values. Yes, if you are actively maintaining a Django admin interface and have fields with many filter values. The package is simple, has no dependencies, and carries permissive licensing. However, be aware that maintenance is dormant—the last release was 2019-10-14. Before installing, verify compatibility with your Django version and check whether recent Django releases have introduced breaking changes to the admin filter API. ## Install pip install django-admin-list-filter-dropdown uv add django-admin-list-filter-dropdown poetry add django-admin-list-filter-dropdown ## Installing django-admin-list-filter-dropdown Before you install: Low install friction with no runtime dependencies. Maintenance is dormant—last release was 2019-10-14 and the repository shows no recent commits, though it remains unarchived and receives steady downloads. License in practice: MIT License permits free use, modification, and distribution with minimal restrictions, making it safe to integrate into commercial or open-source Django projects. Quickstart: pip install django-admin-list-filter-dropdown # In settings.py INSTALLED_APPS = ( 'django-admin-list-filter-dropdown', ) # In admin.py from django-admin-list-filter-dropdown.filters import DropdownFilter class MyAdmin(admin.ModelAdmin): list_filter = (('my_field', DropdownFilter),) Requires Django to be installed and configured; this package only extends Django admin UI. Verify before relying: - Compatibility with Django versions released after 2019-10-14. - Whether the package works with modern Python versions or has version constraints. - Support status and likelihood of maintenance updates for breaking Django changes. ## Package facts - License: MIT License (permissive) - Python support: unspecified - Install friction: low - Maintenance: dormant - Downloads: 1.3M/month (top 5,000 on PyPI) - Known vulnerabilities: none known ## Tags django admin filter dropdown, django admin list filter, django admin ui improvement, django admin sidebar filter, reduce admin filter clutter, django-admin, ui-enhancement [View on SkillFed](https://skillfed.io/packages/django-admin-list-filter-dropdown) · [View on PyPI](https://pypi.org/project/django-admin-list-filter-dropdown/)