1
0
mirror of https://github.com/django/django.git synced 2025-04-20 07:14:35 +00:00

magic-removal: fixed some broken urls for post-add redirects in the admin system.

git-svn-id: http://code.djangoproject.com/svn/django/branches/magic-removal@2075 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Joseph Kocherhans 2006-01-20 17:43:14 +00:00
parent ee1a1eb519
commit de5ea1d18c

View File

@ -330,13 +330,13 @@ def change_stage(request, app_label, model_name, 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()