Re: Enter a valid value while saving fullname during registration

2010-01-17 Thread Malcolm Box
On Sat, Jan 16, 2010 at 7:56 PM, Praveen wrote: You seem to have forgotten to ask a question, provide an answer or start a thread of conversation. Malcolm -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to d

Enter a valid value while saving fullname during registration

2010-01-16 Thread Praveen
urls.py url(r'^accounts/register/$',register, {'form_class':RegForm},name='registration_register'), form.py --- from registration.forms import * class RegForm(RegistrationForm): """ """ fullname = forms.RegexField(regex=r'^\w+$',