diff --git a/django/contrib/admin/views/stages/change.py b/django/contrib/admin/views/stages/change.py index f67151b6e1..df3617030a 100644 --- a/django/contrib/admin/views/stages/change.py +++ b/django/contrib/admin/views/stages/change.py @@ -33,7 +33,7 @@ def change_stage(request, path, object_id): if not request.user.has_perm(app_label + '.' + opts.get_change_permission()): raise PermissionDenied if request.POST and request.POST.has_key("_saveasnew"): - return add_stage(request, path, form_url='../add/') + return add_stage(request, path, form_url='../../add/') try: manipulator_class = model.ChangeManipulator manipulator = manipulator_class(object_id) @@ -61,13 +61,13 @@ def change_stage(request, path, object_id): return HttpResponseRedirect(request.path) elif request.POST.has_key("_saveasnew"): request.user.add_message(_('The %(name)s "%(obj)s" was added successfully. You may edit it again below.') % {'name': opts.verbose_name, 'obj': new_object}) - return HttpResponseRedirect("../%s/" % pk_value) + return HttpResponseRedirect("../../%s/" % pk_value) elif request.POST.has_key("_addanother"): request.user.add_message(msg + ' ' + (_("You may add another %s below.") % opts.verbose_name)) - return HttpResponseRedirect("../add/") + return HttpResponseRedirect("../../add/") else: request.user.add_message(msg) - return HttpResponseRedirect("../") + return HttpResponseRedirect("../../") else: # Populate new_data with a "flattened" version of the current data. new_data = manipulator.flatten_data()