diff options
| author | Malcolm Tredinnick <malcolm.tredinnick@gmail.com> | 2006-09-22 01:54:10 +0000 |
|---|---|---|
| committer | Malcolm Tredinnick <malcolm.tredinnick@gmail.com> | 2006-09-22 01:54:10 +0000 |
| commit | 3cf67a9920bc00703921a3961455df44ea168dd5 (patch) | |
| tree | 65a3d137f81513bcae74206aa97632875e8d47c6 /docs/model-api.txt | |
| parent | c430eb8273d2f5887ec87f1adf29f0543a010fc5 (diff) | |
Fixed #2649 -- Clarified behaviour of editable attribute on models. Thanks,
heckj@mac.com.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@3781 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs/model-api.txt')
| -rw-r--r-- | docs/model-api.txt | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/docs/model-api.txt b/docs/model-api.txt index b46a11c463..c6c4200239 100644 --- a/docs/model-api.txt +++ b/docs/model-api.txt @@ -543,7 +543,9 @@ The default value for the field. ``editable`` ~~~~~~~~~~~~ -If ``False``, the field will not be editable in the admin. Default is ``True``. +If ``False``, the field will not be editable in the admin or via form +processing using the object's ``AddManipulator`` or ``ChangeManipulator`` +classes. Default is ``True``. ``help_text`` ~~~~~~~~~~~~~ |
