Re: table needs all fields filled in?

2006-03-09 Thread abe

thanks, that seems to work.
having trouble understanding what this core=True is actually meaning.

-E


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



Re: table needs all fields filled in?

2006-03-09 Thread tonemcd

Hi,
blank=True should allow you to submit a partially-filled form, but you
have a lot of core=True fields in there as well, perhaps you have too
many? From the Model Reference documentation
http://www.djangoproject.com/documentation/model_api/;

core
For objects that are edited inline to a related object.

In the Django admin, if all "core" fields in an inline-edited object
are cleared, the object will be deleted.

It is an error to have an inline-editable relation without at least one
core=True field.

Cheers,
Tone


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