summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarkus Amalthea Magnuson <markus.magnuson@gmail.com>2016-04-03 13:03:44 +0200
committerTim Graham <timograham@gmail.com>2016-04-04 08:10:16 -0400
commitdd1ab1499077dcf176b01ae466c262d63fe1d34e (patch)
tree66ee5f76fa4cbf85f31d63781c9b74d1875a5ac0
parent3ed8233759a7b30a71383402339dd00287c13831 (diff)
downloaddjango-dd1ab1499077dcf176b01ae466c262d63fe1d34e.tar.gz
[1.9.x] Fixed #26450 -- Corrected "Save as new" button label in docs.
Backport of 23aa700b788e073e6efc4585425c0bd6d3092569 from master
-rw-r--r--docs/ref/contrib/admin/index.txt10
1 files changed, 4 insertions, 6 deletions
diff --git a/docs/ref/contrib/admin/index.txt b/docs/ref/contrib/admin/index.txt
index 13949e736f..f507c823ad 100644
--- a/docs/ref/contrib/admin/index.txt
+++ b/docs/ref/contrib/admin/index.txt
@@ -1139,14 +1139,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``.