django-search-admin-autocomplete icon indicating copy to clipboard operation
django-search-admin-autocomplete copied to clipboard

Simple django app that add autocomplete to search inside admin panel.

Results 6 django-search-admin-autocomplete issues
Sort by recently updated
recently updated
newest added

Just a small suggestion. Maybe you could refactor your admin class to be used as a Mixin rather than as BaseClass. Like [DjangoQl](https://pypi.org/project/djangoql/0.1.1/) does. So instead of writing ```python class...

enhancement

WIP: I have not edited the README to reflect changes. Also this will only work in Python3 because of the use of `super()` without argument.

This is how the search box looks when seen on desktop with screen

bug
ui

In many cases, the requests going to the server becomes very high. Using client-side JavaScript for web pages, we can reduce these requests bearing the risk for outdated data. Perhaps...

From django 4.x - url in django .confs is no longer available. Fix: 1) replace import by from django.urls import include, re_path 2) replace url() on line 34 with re_path(...