Re: I'm having an issue with clean() method in ModelForm

2010-02-10 Thread Roboto
Thanks Bruno, I'll look back into it again tonight. On Feb 10, 5:30 am, bruno desthuilliers wrote: > On Feb 10, 5:22 am, Roboto wrote: > > > class userForm(ModelForm): > > OT : Python's naming convention is "UserForm" > > >     first_name = CharField(label='First Name') > >     last_name = CharF

Re: I'm having an issue with clean() method in ModelForm

2010-02-10 Thread bruno desthuilliers
On Feb 10, 5:22 am, Roboto wrote: > class userForm(ModelForm): OT : Python's naming convention is "UserForm" >     first_name = CharField(label='First Name') >     last_name = CharField(label='Last Name') >     email = CharField(label='Your Email') >     password = CharField(label='New Password

I'm having an issue with clean() method in ModelForm

2010-02-09 Thread Roboto
Hey all, some quick background. I am attempting to have email as username within the confines of the contrib.auth.models User Everything seems okay, except that my modelForm despite what I believe is a custom clean Method is not being run (according to my debugger, it's just jumping past this meth