Tools and widgets for using/creating auto-complete selection widgets using Django and jQuery UI.
- Works with the latest jQuery UI Autocomplete library
- Auto-discovery/registration pattern for defining lookups
To install:
pip install django-selectable
Next add selectable to your INSTALLED_APPS to include the related css/js:
INSTALLED_APPS = ( 'contrib.staticfiles', # Other apps here 'selectable', )
The jQuery and jQuery UI libraries are not included in the distribution but must be included in your templates. See the example project for an example using these libraries from the Google CDN.
Once installed you should add the urls to your root url patterns:
urlpatterns = [ # Other patterns go here url(r'^selectable/', include('selectable.urls')), ]
Documentation for django-selectable is available on Read The Docs.
You can find additional help or support on the mailing list: http://groups.google.com/group/django-selectable
If you think you've found a bug or are interested in contributing to this project check out our contributing guide.
If you are interested in translating django-selectable into your native language you can join the Transifex project.