On 4 May 2009, at 12:47 , pbzRPA wrote: > I would do the following. > > from django.http import HttpResponseRedirect > from django.core.urlresolvers import reverse > > def deleteItems(request, item): > > return HttpResponseRedirect(reverse('app.views.showItems'))
FWIW the `'app.views.showItems'` isn't even necessary, you can just pass the view function and reverse will figure out the rest, so return HttpResponseRedirect(reverse(showItems)) is, in fact, sufficient. --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---