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 ?
--
You received this message because you are subscribed to the Google Groups
"Django users" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/django-users?hl=en.