> - first try for empty record, expecting an empty Project-object to be created
> from the form automatically:
> projectForm = forms.ProjectForm()
> projectForm.save()
> => result: 'ProjectForm' object has no attribute 'cleaned_data'
You need to run the clean method on the form to make sure the data is
valid, for example:

projectForm = forms.ProjectForm()
if projectForm.is_valid(): #this runs clean()
    projectForm.save()
else:
    print projectForm.errors

I would expect this to just print lots of errors at you because your
model doesn't allow those fields to be blank. I'm slightly suspect
that some of your example here isn't accurate though, as you say you
can save a blank model which given your model definition would raise
an error.

Peter

--

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=.


Reply via email to