django-ajax-selects app: How do I create a new object when there isn't already one in the database?
I'm using django-ajax-selects, which is a freely available django app providing jquery autocomplete functionality. I've got it working - i.e. it is autocompleting the form fields I want it to. But I have a problem... I'm using it in a ModelForm which adds Partnership objects to the database: class Skater(models.Model): name = model...