mirror of https://github.com/django/django.git
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
This commit is contained in:
parent
c430eb8273
commit
3cf67a9920
1
AUTHORS
1
AUTHORS
|
@ -77,6 +77,7 @@ answer newbie questions, and generally made Django that much better:
|
|||
Simon Greenhill <dev@simon.net.nz>
|
||||
Espen Grindhaug <http://grindhaug.org/>
|
||||
Brant Harris
|
||||
heckj@mac.com
|
||||
hipertracker@gmail.com
|
||||
Ian Holsman <http://feh.holsman.net/>
|
||||
Kieran Holland <http://www.kieranholland.com>
|
||||
|
|
|
@ -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``
|
||||
~~~~~~~~~~~~~
|
||||
|
|
Loading…
Reference in New Issue