>
> class Profile(models.Model):
>    name = models.CharField()
>    foo = models.PositiveIntegerField(blank=True, default=0)
>
> class RegistrationForm(forms.Form):
>    name = forms.CharField()
>    foo = forms.IntegerField(min_value=0, max_value=55,
> required=False)
>
>


a) If your form is the same as your Model, why not use a model form? [1]

b) if you want to allow foo to be null, add 'null=True' to the foo field in
the model [2]

[1] http://docs.djangoproject.com/en/dev/topics/forms/modelforms/
[2] http://docs.djangoproject.com/en/dev/topics/db/models/#field-options

--~--~---------~--~----~------------~-------~--~----~
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