Hi at all, I am looking for a working simple example on autocomplete widget for foreign key in Django. I have found many example but I don't understand and doesn't work.
This is my model:
class profile(models.Model):
user = models.ForeignKey(User, unique=True)
class profileForm(ModelForm):
user = forms.CharField(widget=AutoCompleteWidget())
class Meta:
model = profile
I wish an AutoCompleteWidget working for this example.
Could anyone help me pleaseee ?