Thanks! Quite a lot of work for something so simple, but it works. For future reference here's what it looks like now:
===forms.py============================== class CarChoiceField(forms.ModelChoiceField): def __init__(self, *args, **kwargs): super(MyChoiceField, self).__init__(empty_label=None, *args, **kwargs) class SomeForm(forms.ModelForm): def __init__(self, *args, **kwargs): super(SomeForm, self).__init__(*args, **kwargs) self.fields['car'] = CarChoiceField(Car.objects.all()) ======================================= 2B --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.com 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 -~----------~----~----~----~------~----~------~--~---