From 32cf0aabd14be1e1978caf1e88643f4e99b7724b Mon Sep 17 00:00:00 2001 From: Joseph Kocherhans Date: Thu, 19 Jan 2006 16:52:30 +0000 Subject: [PATCH] magic-removal: Fixed post_url_continue link for the admin system's add_stage. git-svn-id: http://code.djangoproject.com/svn/django/branches/magic-removal@2073 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- django/contrib/admin/views/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/django/contrib/admin/views/main.py b/django/contrib/admin/views/main.py index efa80732b0..9b61e3be3e 100644 --- a/django/contrib/admin/views/main.py +++ b/django/contrib/admin/views/main.py @@ -195,7 +195,7 @@ def index(request): return render_to_response('admin/index', {'title': _('Site administration')}, context_instance=template.RequestContext(request)) index = staff_member_required(index) -def add_stage(request, app_label, model_name, show_delete=False, form_url='', post_url='../', post_url_continue='../%s/change', object_id_override=None): +def add_stage(request, app_label, model_name, show_delete=False, form_url='', post_url='../', post_url_continue='../%s/', object_id_override=None): model = get_model(app_label, model_name) opts = model._meta