diff options
| author | Markus Amalthea Magnuson <markus.magnuson@gmail.com> | 2016-04-03 13:03:44 +0200 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2016-04-04 08:09:24 -0400 |
| commit | 23aa700b788e073e6efc4585425c0bd6d3092569 (patch) | |
| tree | c0cb2de48885f677e4553e8b79ce5aa0ec87e0fb /docs/ref | |
| parent | 21dd98a38660747c781802afca7ca02407964383 (diff) | |
Fixed #26450 -- Corrected "Save as new" button label in docs.
Diffstat (limited to 'docs/ref')
| -rw-r--r-- | docs/ref/contrib/admin/index.txt | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/docs/ref/contrib/admin/index.txt b/docs/ref/contrib/admin/index.txt index 394b5af5db..284d6aa62d 100644 --- a/docs/ref/contrib/admin/index.txt +++ b/docs/ref/contrib/admin/index.txt @@ -1137,14 +1137,12 @@ subclass:: .. attribute:: ModelAdmin.save_as - Set ``save_as`` to enable a "save as" feature on admin change forms. + Set ``save_as`` to enable a "save as new" feature on admin change forms. Normally, objects have three save options: "Save", "Save and continue - editing" and "Save and add another". If ``save_as`` is ``True``, "Save - and add another" will be replaced by a "Save as" button. - - "Save as" means the object will be saved as a new object (with a new ID), - rather than the old object. + editing", and "Save and add another". If ``save_as`` is ``True``, "Save + and add another" will be replaced by a "Save as new" button that creates a + new object (with a new ID) rather than updating the existing object. By default, ``save_as`` is set to ``False``. |
