├── .bumpversion.cfg ├── .flake8 ├── .gitignore ├── .isort.cfg ├── .pylintrc ├── LICENCE ├── MANIFEST.in ├── README.md ├── Rakefile ├── djaa_list_filter ├── __init__.py ├── admin.py ├── apps.py ├── static │ └── djaa_list_filter │ │ └── admin │ │ ├── css │ │ └── autocomplete_list_filter.css │ │ └── js │ │ └── autocomplete_list_filter.js └── templates │ └── djaa_list_filter │ └── admin │ └── filter │ └── autocomplete_list_filter.html ├── pyproject.toml ├── screenshots ├── after.png ├── before.png └── demo.gif ├── setup.py └── tea.yaml /.bumpversion.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demiroren-teknoloji/django-admin-autocomplete-list-filter/HEAD/.bumpversion.cfg -------------------------------------------------------------------------------- /.flake8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demiroren-teknoloji/django-admin-autocomplete-list-filter/HEAD/.flake8 -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demiroren-teknoloji/django-admin-autocomplete-list-filter/HEAD/.gitignore -------------------------------------------------------------------------------- /.isort.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demiroren-teknoloji/django-admin-autocomplete-list-filter/HEAD/.isort.cfg -------------------------------------------------------------------------------- /.pylintrc: -------------------------------------------------------------------------------- 1 | /Users/vigo/Repos/Dropbox/Files/configs/pylintrc -------------------------------------------------------------------------------- /LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demiroren-teknoloji/django-admin-autocomplete-list-filter/HEAD/LICENCE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demiroren-teknoloji/django-admin-autocomplete-list-filter/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demiroren-teknoloji/django-admin-autocomplete-list-filter/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demiroren-teknoloji/django-admin-autocomplete-list-filter/HEAD/Rakefile -------------------------------------------------------------------------------- /djaa_list_filter/__init__.py: -------------------------------------------------------------------------------- 1 | __version__ = '1.0.1' 2 | -------------------------------------------------------------------------------- /djaa_list_filter/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demiroren-teknoloji/django-admin-autocomplete-list-filter/HEAD/djaa_list_filter/admin.py -------------------------------------------------------------------------------- /djaa_list_filter/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demiroren-teknoloji/django-admin-autocomplete-list-filter/HEAD/djaa_list_filter/apps.py -------------------------------------------------------------------------------- /djaa_list_filter/static/djaa_list_filter/admin/css/autocomplete_list_filter.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demiroren-teknoloji/django-admin-autocomplete-list-filter/HEAD/djaa_list_filter/static/djaa_list_filter/admin/css/autocomplete_list_filter.css -------------------------------------------------------------------------------- /djaa_list_filter/static/djaa_list_filter/admin/js/autocomplete_list_filter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demiroren-teknoloji/django-admin-autocomplete-list-filter/HEAD/djaa_list_filter/static/djaa_list_filter/admin/js/autocomplete_list_filter.js -------------------------------------------------------------------------------- /djaa_list_filter/templates/djaa_list_filter/admin/filter/autocomplete_list_filter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demiroren-teknoloji/django-admin-autocomplete-list-filter/HEAD/djaa_list_filter/templates/djaa_list_filter/admin/filter/autocomplete_list_filter.html -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demiroren-teknoloji/django-admin-autocomplete-list-filter/HEAD/pyproject.toml -------------------------------------------------------------------------------- /screenshots/after.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demiroren-teknoloji/django-admin-autocomplete-list-filter/HEAD/screenshots/after.png -------------------------------------------------------------------------------- /screenshots/before.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demiroren-teknoloji/django-admin-autocomplete-list-filter/HEAD/screenshots/before.png -------------------------------------------------------------------------------- /screenshots/demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demiroren-teknoloji/django-admin-autocomplete-list-filter/HEAD/screenshots/demo.gif -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demiroren-teknoloji/django-admin-autocomplete-list-filter/HEAD/setup.py -------------------------------------------------------------------------------- /tea.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demiroren-teknoloji/django-admin-autocomplete-list-filter/HEAD/tea.yaml --------------------------------------------------------------------------------