summaryrefslogtreecommitdiff
path: root/docs/topics
diff options
context:
space:
mode:
authorRussell Keith-Magee <russell@keith-magee.com>2010-12-04 11:20:30 +0000
committerRussell Keith-Magee <russell@keith-magee.com>2010-12-04 11:20:30 +0000
commit324658ef265fb9a4c5cc695a4b0f560575048604 (patch)
tree31f9d8dfb5f609cebf27aa04093ed1f5c1c13f09 /docs/topics
parentac91d5ef086f466c27e77157c67fe4f1df9b7557 (diff)
Fixed #14803 -- Corrected an inconsistency in redirection handling between old-style generic views and class-based views. Thanks to gg for the report and patch.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@14808 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs/topics')
-rw-r--r--docs/topics/generic-views-migration.txt7
1 files changed, 7 insertions, 0 deletions
diff --git a/docs/topics/generic-views-migration.txt b/docs/topics/generic-views-migration.txt
index 407ef24e49..bf3a5f2b62 100644
--- a/docs/topics/generic-views-migration.txt
+++ b/docs/topics/generic-views-migration.txt
@@ -113,6 +113,13 @@ For example::
})
return context
+``post_save_redirect`` argument to create and update views
+----------------------------------------------------------
+
+The ``post_save_redirect`` argument to the create and update views
+has been renamed ``success_url`` on the
+:class:`~django.views.generic.edit.ModelFormMixin`.
+
``mimetype``
------------