ModelAdmin.list_editable
Set list_editable
to a list of field names on the model which will allow editing on the change list page. That is, fields listed in list_editable
will be displayed as form widgets on the change list page, allowing users to edit and save multiple rows at once.
Note
list_editable
interacts with a couple of other options in particular ways; you should note the following rules:
- Any field in
list_editable
must also be inlist_display
. You can’t edit a field that’s not displayed! - The same field can’t be listed in both
list_editable
andlist_display_links
– a field can’t be both a form and a link.
You’ll get a validation error if either of these rules are broken.
Please login to continue.