How to use django_autcomplete_light to add autocomplete to a single field in a form. I have a model based form and I want to add autocomplete to the firstname field.
I have done the following:
Set django_autocomplete_light
INSTALLED_APPS changed:
INSTALLED_APPS = (
'autocomplete_light',
'django.contrib.admin',
...
Added it to urls.py, here is my urls.py:
from django.conf.urls import include, url from django.contrib import admin
urlpatterns = [
url(r"^admin/", include(admin.site.urls)),
url(r"^app/", include("app.urls")),
url(r"^autocomplete/", include("autocomplete_light.urls")),
url(r"^.*$", include("app.urls")),
]
Created a file called autocomplete_light_registry.py and added the following:
import autocomplete_light as al
from .models import *
al.register(Person,
search_fields = ["^firstname"],
attrs={
"placeholder":"First name",
"data-autocomplete-minimum-characters":1,
},
widget_attrs={
"data-widget-maximum-values":4,
"class":"modern-style",
},
)
changed my PersonForm with:
class PersonForm(forms.ModelForm)
at
class PersonForm(autocomplete_light.ModelForm)
class Meta:
model = Person
autocomplete_fields = ("firstname")
I also added the following line to the html page for the form:
{% include 'autocomplete_light/static.html' %}
And I imported all the necessary jquery files
But autocomplete does not appear. I have no mistakes. I followed the documentation tutorial.
I use python manage.py runserverto run the application.
EDIT:
urlpatterns ( django-autocomplete-light url):
urlpatterns = [
url(r"^autocomplete/", include("autocomplete_light.urls")),
url(r"^admin/", include(admin.site.urls)),
url(r"^app/", include("app.urls")),
url(r"^.*$", include("app.urls")),
]
.