diff options
| author | Adrian Holovaty <adrian@holovaty.com> | 2006-06-01 04:35:44 +0000 |
|---|---|---|
| committer | Adrian Holovaty <adrian@holovaty.com> | 2006-06-01 04:35:44 +0000 |
| commit | 1ffa1a9bc8153417f11c43e348f371aacdf21b1c (patch) | |
| tree | 9c6f33c2158899287392ce9f73a167aa1fa7bcd0 /docs | |
| parent | 8ac9bb7ddf4896f26906dd8e17a62f22fa5eed41 (diff) | |
Fixed #2054 -- Added a bit of docs to the 'core' field docs in model-api.txt
git-svn-id: http://code.djangoproject.com/svn/django/trunk@3042 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/model-api.txt | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/docs/model-api.txt b/docs/model-api.txt index 3e40a6f63f..fbb00a9e33 100644 --- a/docs/model-api.txt +++ b/docs/model-api.txt @@ -488,6 +488,10 @@ cleared, the object will be deleted. It is an error to have an inline-editable relation without at least one ``core=True`` field. +Please note that each field marked "core" is treated as a required field by the +Django admin site. Essentially, this means you should put ``core=True`` on all +required fields in your related object that is being edited inline. + ``db_column`` ~~~~~~~~~~~~~ |
