You can write you own admin class and implement the following methods. Below is an example of an admin class which changes the redirect for the add, change and delete stage.
I am not sure if this is the best way to do it, but it works: --- class YourClassAdmin(admin.ModelAdmin): def response_add(self, request, obj, post_url_continue='../%s/'): # call the baseclass functionality response = super(YourClassAdmin, self).response_add(request, obj, post_url_continue) if not request.POST.has_key("_continue") and \ not request.POST.has_key("_saveasnew") and \ not request.POST.has_key("_addanother"): return HttpResponseRedirect("../../menu/%s/" % request.POST ['menu']) else: return HttpResponseRedirect("../../menu/%s/" % request.POST ['menu']) def response_change(self, request, obj): response = super(YourClassAdmin, self).response_change (request, obj) if not request.POST.has_key("_continue") and \ not request.POST.has_key("_saveasnew") and \ not request.POST.has_key("_addanother"): return HttpResponseRedirect("../../menu/%s/" % request.POST ['menu']) else: return HttpResponseRedirect("../../menu/%s/" % request.POST ['menu']) def delete_view(self, request, object_id): menu = MenuEntry.objects.get(pk=object_id).menu response = super(YourClassAdmin, self).delete_view(request, object_id) if type(response) == HttpResponseRedirect: return HttpResponseRedirect('../../../menu/%d/' % menu.pk) return response --- Regards, peschler On 24 Feb., 16:36, Alfonso <allanhender...@gmail.com> wrote: > Is it possible to define a url for the admin form submit? I'd like to > redirect a user to a custom list view I've created (outside admin) > following the save of a record update or record addition. Is that > possible through the 'admin/submit_line.html' template? > > For example I'd like a user to end up at /products instead of /admin/ > database/products/ or /customers instead of /admin/database/customers/ > > Thanks1 --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.com To unsubscribe from this group, send email to django-users+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/django-users?hl=en -~----------~----~----~----~------~----~------~--~---