├── .gitignore ├── LICENSE ├── MANIFEST.in ├── README.md ├── admin_auto_filters ├── __init__.py ├── apps.py ├── filters.py ├── media │ ├── screenshot1.png │ └── screenshot2.png ├── static │ └── django-admin-autocomplete-filter │ │ ├── css │ │ └── autocomplete-fix.css │ │ └── js │ │ └── autocomplete_filter_qs.js ├── templates │ └── django-admin-autocomplete-filter │ │ └── autocomplete-filter.html └── views.py ├── requirements.txt ├── setup.py ├── tests ├── static │ └── custom.css ├── testapp │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── fixtures │ │ └── fixture.json │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── 0002_data.py │ │ └── __init__.py │ ├── models.py │ ├── tests.py │ └── views.py └── tests │ ├── __init__.py │ ├── settings.py │ ├── urls.py │ └── wsgi.py └── tests_manage.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farhan0581/django-admin-autocomplete-filter/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farhan0581/django-admin-autocomplete-filter/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farhan0581/django-admin-autocomplete-filter/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farhan0581/django-admin-autocomplete-filter/HEAD/README.md -------------------------------------------------------------------------------- /admin_auto_filters/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /admin_auto_filters/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farhan0581/django-admin-autocomplete-filter/HEAD/admin_auto_filters/apps.py -------------------------------------------------------------------------------- /admin_auto_filters/filters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farhan0581/django-admin-autocomplete-filter/HEAD/admin_auto_filters/filters.py -------------------------------------------------------------------------------- /admin_auto_filters/media/screenshot1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farhan0581/django-admin-autocomplete-filter/HEAD/admin_auto_filters/media/screenshot1.png -------------------------------------------------------------------------------- /admin_auto_filters/media/screenshot2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farhan0581/django-admin-autocomplete-filter/HEAD/admin_auto_filters/media/screenshot2.png -------------------------------------------------------------------------------- /admin_auto_filters/static/django-admin-autocomplete-filter/css/autocomplete-fix.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farhan0581/django-admin-autocomplete-filter/HEAD/admin_auto_filters/static/django-admin-autocomplete-filter/css/autocomplete-fix.css -------------------------------------------------------------------------------- /admin_auto_filters/static/django-admin-autocomplete-filter/js/autocomplete_filter_qs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farhan0581/django-admin-autocomplete-filter/HEAD/admin_auto_filters/static/django-admin-autocomplete-filter/js/autocomplete_filter_qs.js -------------------------------------------------------------------------------- /admin_auto_filters/templates/django-admin-autocomplete-filter/autocomplete-filter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farhan0581/django-admin-autocomplete-filter/HEAD/admin_auto_filters/templates/django-admin-autocomplete-filter/autocomplete-filter.html -------------------------------------------------------------------------------- /admin_auto_filters/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farhan0581/django-admin-autocomplete-filter/HEAD/admin_auto_filters/views.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | Django>=2.0 -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farhan0581/django-admin-autocomplete-filter/HEAD/setup.py -------------------------------------------------------------------------------- /tests/static/custom.css: -------------------------------------------------------------------------------- 1 | /* custom css */ 2 | -------------------------------------------------------------------------------- /tests/testapp/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farhan0581/django-admin-autocomplete-filter/HEAD/tests/testapp/__init__.py -------------------------------------------------------------------------------- /tests/testapp/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farhan0581/django-admin-autocomplete-filter/HEAD/tests/testapp/admin.py -------------------------------------------------------------------------------- /tests/testapp/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farhan0581/django-admin-autocomplete-filter/HEAD/tests/testapp/apps.py -------------------------------------------------------------------------------- /tests/testapp/fixtures/fixture.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farhan0581/django-admin-autocomplete-filter/HEAD/tests/testapp/fixtures/fixture.json -------------------------------------------------------------------------------- /tests/testapp/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farhan0581/django-admin-autocomplete-filter/HEAD/tests/testapp/migrations/0001_initial.py -------------------------------------------------------------------------------- /tests/testapp/migrations/0002_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farhan0581/django-admin-autocomplete-filter/HEAD/tests/testapp/migrations/0002_data.py -------------------------------------------------------------------------------- /tests/testapp/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testapp/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farhan0581/django-admin-autocomplete-filter/HEAD/tests/testapp/models.py -------------------------------------------------------------------------------- /tests/testapp/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farhan0581/django-admin-autocomplete-filter/HEAD/tests/testapp/tests.py -------------------------------------------------------------------------------- /tests/testapp/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farhan0581/django-admin-autocomplete-filter/HEAD/tests/testapp/views.py -------------------------------------------------------------------------------- /tests/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tests/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farhan0581/django-admin-autocomplete-filter/HEAD/tests/tests/settings.py -------------------------------------------------------------------------------- /tests/tests/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farhan0581/django-admin-autocomplete-filter/HEAD/tests/tests/urls.py -------------------------------------------------------------------------------- /tests/tests/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farhan0581/django-admin-autocomplete-filter/HEAD/tests/tests/wsgi.py -------------------------------------------------------------------------------- /tests_manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farhan0581/django-admin-autocomplete-filter/HEAD/tests_manage.py --------------------------------------------------------------------------------