Re: Validation problems with formset_factory

2009-02-23 Thread mediumgrade
Worked like a charm. It was the ModelChoice field. It was trigging the errors because of the initial value I was setting. On Feb 20, 7:48 pm, Malcolm Tredinnick wrote: > On Fri, 2009-02-20 at 19:32 -0800, mediumgrade wrote: > > So, I have a form like this: > > > > class AddUserForm(forms.Form):

Re: Validation problems with formset_factory

2009-02-20 Thread Malcolm Tredinnick
On Fri, 2009-02-20 at 19:32 -0800, mediumgrade wrote: > So, I have a form like this: > > class AddUserForm(forms.Form): > username = forms.CharField(label='Username', required=False) > password1 = forms.CharField(label='Password', > widget=forms.PasswordInput) > password2 = forms.Char

Validation problems with formset_factory

2009-02-20 Thread mediumgrade
So, I have a form like this: class AddUserForm(forms.Form): username = forms.CharField(label='Username', required=False) password1 = forms.CharField(label='Password', widget=forms.PasswordInput) password2 = forms.CharField(label='Password (Again)', widget=forms.PasswordInput) firs