Re: reverse url fails on existing url

2009-06-16 Thread Bastien
thanks!! both works. Bastien On Jun 16, 11:10 am, Brian May wrote: > On Tue, Jun 16, 2009 at 02:07:01AM -0700, Bastien wrote: > > I don't understand how this works, on my url without arguments I can > > use the template tag {% url ... %} and it just works but as

Re: reverse url fails on existing url

2009-06-16 Thread Brian May
On Tue, Jun 16, 2009 at 02:07:01AM -0700, Bastien wrote: > I don't understand how this works, on my url without arguments I can > use the template tag {% url ... %} and it just works but as soon as I > have an argument like this one: > > url(r'^users/(?P.+)/comments/$', >

reverse url fails on existing url

2009-06-16 Thread Bastien
Hello, I don't understand how this works, on my url without arguments I can use the template tag {% url ... %} and it just works but as soon as I have an argument like this one: url(r'^users/(?P.+)/comments/$', view=public_comments, name='public_comments'), and I call it