> I would highly recommend you read the newforms documentation [1] if you have 
> never used newforms before.

Opps, forgot the link http://www.djangoproject.com/documentation/newforms/
and while I am here check out 
http://www.djangoproject.com/documentation/modelforms/
too.

>  def clean_name(self):
>      value = self.cleaned_data["name"]
>      if name == "Brian":
>          raise forms.ValidationError, u"You are not allowed to be named 
> Brian."
>      return value

Oh, and if name == "Brian" should clearly be if value == "Brian"

Brian Rosner
http://oebfare.com
--~--~---------~--~----~------------~-------~--~----~
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 [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to