Re: Newbie Problem with Django reverse()

2011-03-28 Thread Ajay
Hi Alendit, Thanks for explanation. I understand its not necessary but want to understand how reverse() works-checked source but did not understand much. my doubt is if I use something like : reverse('django.contrib.auth.views.password_change_done'), and have url entry like as follows. url(r'^

Re: Newbie Problem with Django reverse()

2011-03-27 Thread Alendit
Hi, if only one url is bound to a controller there is no need for a name argument. When you are specifying a name for an expression and it have got the same name as the controller a conflict arise. Just drop the name argument and it should work. Alendit. On 27 Mrz., 09:54, Ajay wrote: > I am mi