Re: NoReverseMatch error during Django 1.0 tutorial

2009-06-23 Thread Rafa Muñoz Cárdenas
return HttpResponseRedirect(reverse ('mysite.polls.vews.results', args=(p.id,))) As you see, there is a mistake in "vews". return HttpResponseRedirect(reverse ('mysite.polls.views.results', args=(p.id,))) Now it should work :) On 21 jun, 19:11, ebbnormal wrote: > Hello, > > I am still working

NoReverseMatch error during Django 1.0 tutorial

2009-06-21 Thread ebbnormal
Hello, I am still working on the Django 1.0 tutorial (http:// docs.djangoproject.com/en/1.0/intro/tutorial04/) and got the following error after voting on my poll ( which simply makes a call to the Django reverse function which is supposed to give control to my results function in polls.views).