magic-removal: url fixes in admin. Thanks Nebojsa.

git-svn-id: http://code.djangoproject.com/svn/django/branches/magic-removal@1737 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Robert Wittams 2005-12-19 12:55:48 +00:00
parent d42511dba6
commit 79b57ab50b
1 changed files with 4 additions and 4 deletions

View File

@ -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()