The way I achieved this was to make my own registration form and use
this:

email = forms.EmailField(widget=forms.TextInput(attrs=dict
(attrs_dict,maxlength=75)),label=_(u'Email address'))

where attrs_dict was earlier defined as:
attrs_dict = { 'class': 'required' }

also, the email address isn't checked for uniqueness (which i think is
silly) so I added this:

def clean_email(self):
                """
                Validate that the email is not already in use.

                """
                try:
                        user = 
User.objects.get(email__iexact=self.cleaned_data['email'])
                except User.DoesNotExist:
                        return self.cleaned_data['email']
                raise forms.ValidationError(_(u'This email is already taken. 
Please
choose another.'))

On Apr 10, 6:51 pm, Davide <da.crive...@gmail.com> wrote:
> Hi all,
> we've been using the django User model from contrib.auth.models
> As we want to re-use as much code as possible, is there a way to edit
> the class properties, making the "email" field required? As a default
> this is not a required field. Gooogled for some answers but didn't
> find one, but if I missed something please let me know.
> Thanks in advance,
> Davide
--~--~---------~--~----~------------~-------~--~----~
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 
django-users+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to