On 4 May 2009, at 14:55 , pbzRPA wrote: > On May 4, 1:24 pm, Masklinn <maskl...@masklinn.net> wrote: >> 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. > > That is correct but only if the function resides in the same file that > the reverse function is used. Unless you import it yes, but in this case the function *does* reside in the same file.
--~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---