├── .github └── workflows │ └── ci.yml ├── .gitignore ├── LICENSE ├── MANIFEST.in ├── README.md ├── more_admin_filters ├── __init__.py ├── __version__.py ├── apps.py ├── filters.py └── templates │ └── more_admin_filters │ ├── dropdownfilter.html │ └── multiselectdropdownfilter.html ├── setup.py ├── tests ├── manage.py └── testapp │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── management │ ├── __init__.py │ └── commands │ │ ├── __init__.py │ │ └── createtestdata.py │ ├── migrations │ ├── 0001_initial.py │ ├── 0002_modela_multiselect_utf8.py │ └── __init__.py │ ├── models.py │ ├── settings.py │ ├── tests │ ├── __init__.py │ ├── test_filters.py │ └── test_live_filters.py │ ├── urls.py │ └── wsgi.py └── tox.ini /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomst/django-more-admin-filters/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomst/django-more-admin-filters/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomst/django-more-admin-filters/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomst/django-more-admin-filters/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomst/django-more-admin-filters/HEAD/README.md -------------------------------------------------------------------------------- /more_admin_filters/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomst/django-more-admin-filters/HEAD/more_admin_filters/__init__.py -------------------------------------------------------------------------------- /more_admin_filters/__version__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomst/django-more-admin-filters/HEAD/more_admin_filters/__version__.py -------------------------------------------------------------------------------- /more_admin_filters/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomst/django-more-admin-filters/HEAD/more_admin_filters/apps.py -------------------------------------------------------------------------------- /more_admin_filters/filters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomst/django-more-admin-filters/HEAD/more_admin_filters/filters.py -------------------------------------------------------------------------------- /more_admin_filters/templates/more_admin_filters/dropdownfilter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomst/django-more-admin-filters/HEAD/more_admin_filters/templates/more_admin_filters/dropdownfilter.html -------------------------------------------------------------------------------- /more_admin_filters/templates/more_admin_filters/multiselectdropdownfilter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomst/django-more-admin-filters/HEAD/more_admin_filters/templates/more_admin_filters/multiselectdropdownfilter.html -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomst/django-more-admin-filters/HEAD/setup.py -------------------------------------------------------------------------------- /tests/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomst/django-more-admin-filters/HEAD/tests/manage.py -------------------------------------------------------------------------------- /tests/testapp/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testapp/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomst/django-more-admin-filters/HEAD/tests/testapp/admin.py -------------------------------------------------------------------------------- /tests/testapp/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomst/django-more-admin-filters/HEAD/tests/testapp/apps.py -------------------------------------------------------------------------------- /tests/testapp/management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testapp/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testapp/management/commands/createtestdata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomst/django-more-admin-filters/HEAD/tests/testapp/management/commands/createtestdata.py -------------------------------------------------------------------------------- /tests/testapp/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomst/django-more-admin-filters/HEAD/tests/testapp/migrations/0001_initial.py -------------------------------------------------------------------------------- /tests/testapp/migrations/0002_modela_multiselect_utf8.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomst/django-more-admin-filters/HEAD/tests/testapp/migrations/0002_modela_multiselect_utf8.py -------------------------------------------------------------------------------- /tests/testapp/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testapp/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomst/django-more-admin-filters/HEAD/tests/testapp/models.py -------------------------------------------------------------------------------- /tests/testapp/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomst/django-more-admin-filters/HEAD/tests/testapp/settings.py -------------------------------------------------------------------------------- /tests/testapp/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testapp/tests/test_filters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomst/django-more-admin-filters/HEAD/tests/testapp/tests/test_filters.py -------------------------------------------------------------------------------- /tests/testapp/tests/test_live_filters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomst/django-more-admin-filters/HEAD/tests/testapp/tests/test_live_filters.py -------------------------------------------------------------------------------- /tests/testapp/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomst/django-more-admin-filters/HEAD/tests/testapp/urls.py -------------------------------------------------------------------------------- /tests/testapp/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomst/django-more-admin-filters/HEAD/tests/testapp/wsgi.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomst/django-more-admin-filters/HEAD/tox.ini --------------------------------------------------------------------------------