django-choices-js¶
Widgets and autocompletion endpoints for Choices.js in Django.
Installation¶
Install django-choices-js:
pip install git+https://github.com/RasmusAntons/django-choices-js.git
Add django_choices_js to your INSTALLED_APPS.
INSTALLED_APPS = [
# ...
'django_choices_js',
]
Add django_choices_js.urls to your URL configuration:
urlpatterns = [
# ...
path("django_choices_js/", include("django_choices_js.urls")),
]