summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorJulien Phalip <jphalip@gmail.com>2012-12-22 20:00:08 +0100
committerRamiro Morales <cramm0@gmail.com>2012-12-24 15:44:19 -0300
commit35d1cd0b28d1d9cd7bffbfbc6cc2e02b58404415 (patch)
tree0e5485a7a8f254bdda93b892cf5089b7f05a5c8d /docs
parent4a71b842662162e0892a9269179421ff2191adba (diff)
downloaddjango-35d1cd0b28d1d9cd7bffbfbc6cc2e02b58404415.tar.gz
Fixed #19505 -- A more flexible implementation for customizable admin redirect urls.
Work by Julien Phalip. Refs #8001, #18310, #19505. See also 0b908b92a2ca4fb74a103e96bb75c53c05d0a428.
Diffstat (limited to 'docs')
-rw-r--r--docs/internals/deprecation.txt6
1 files changed, 6 insertions, 0 deletions
diff --git a/docs/internals/deprecation.txt b/docs/internals/deprecation.txt
index 414da30ff8..386dfc0b00 100644
--- a/docs/internals/deprecation.txt
+++ b/docs/internals/deprecation.txt
@@ -268,6 +268,12 @@ these changes.
* ``django.contrib.markup`` will be removed following an accelerated
deprecation.
+* The value for the ``post_url_continue`` parameter in
+ ``ModelAdmin.response_add()`` will have to be either ``None`` (to redirect
+ to the newly created object's edit page) or a pre-formatted url. String
+ formats, such as the previous default ``'../%s/'``, will not be accepted any
+ more.
+
1.7
---