diff options
| author | Tim Graham <timograham@gmail.com> | 2012-11-06 06:58:25 -0500 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2012-11-06 19:04:38 -0500 |
| commit | 4f36ea451d9321913c9fc235dd4f05d4305453df (patch) | |
| tree | 527320fee8328a8f0773c136ea237f8bd12d051a /docs/ref | |
| parent | 84e33545c90f353eacf8d01b33d9bec635f4e2c0 (diff) | |
[1.5.X] Fixed #15968 - Noted that readonly_fields are excluded from the ModelForm
Backport of a386675a6a from master
Diffstat (limited to 'docs/ref')
| -rw-r--r-- | docs/ref/contrib/admin/index.txt | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/docs/ref/contrib/admin/index.txt b/docs/ref/contrib/admin/index.txt index ee1342b43d..29ee66bccc 100644 --- a/docs/ref/contrib/admin/index.txt +++ b/docs/ref/contrib/admin/index.txt @@ -816,9 +816,11 @@ subclass:: By default the admin shows all fields as editable. Any fields in this option (which should be a ``list`` or ``tuple``) will display its data - as-is and non-editable. Note that when specifying :attr:`ModelAdmin.fields` - or :attr:`ModelAdmin.fieldsets` the read-only fields must be present to be - shown (they are ignored otherwise). + as-is and non-editable; they are also excluded from the + :class:`~django.forms.ModelForm` used for creating and editing. Note that + when specifying :attr:`ModelAdmin.fields` or :attr:`ModelAdmin.fieldsets` + the read-only fields must be present to be shown (they are ignored + otherwise). If ``readonly_fields`` is used without defining explicit ordering through :attr:`ModelAdmin.fields` or :attr:`ModelAdmin.fieldsets` they will be |
