You guys are awesome, it's always great to find a great new framework and
then find out it has a great community as well. I can't wait to try this
tonight. Thanks again!



Masklinn wrote:
> 
> 
> 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.
> 
> > 
> 
> 

-- 
View this message in context: 
http://www.nabble.com/How-to-handle-view-url-situation-%28Newbie%29-tp23363094p23370540.html
Sent from the django-users mailing list archive at Nabble.com.


--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---

Reply via email to