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 method) And in doing so it will just bypass 'email checking' and flag is_valid() as true and attempt to save another user account with the same email address. any thoughts would be appreciated! Thanks views.py def view_index(request): if request.POST: uForm = userForm(request.POST, instance = User()) mForm = profileForm(request.POST, instance = mainProfile()) if uForm.is_valid() and mForm.is_valid(): u = uForm.save(commit=False) u.set_password(u.password) u.username = u.email u.save() m = mForm.save(commit=False) m.user = u m.save() return render_to_response('team.html') else: uForm = userForm(instance = User()) mForm = profileForm(instance = mainProfile()) return render_to_response('base.html', {'uForm':uForm,'mForm':mForm}) forms.py class userForm(ModelForm): first_name = CharField(label='First Name') last_name = CharField(label='Last Name') email = CharField(label='Your Email') password = CharField(label='New Password', widget=PasswordInput()) def clean(self): from django.core.exceptions import ValidationError try: user = User.objects.get(username=email) raise ValidationError("account already exists") except User.DoesNotExist: return None class Meta: models = User fields = ['first_name','last_name','email','password'] -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-us...@googlegroups.com. To unsubscribe from this group, send email to django-users+unsubscr...@googlegroups.com. For more options, visit this group at http://groups.google.com/group/django-users?hl=en.