Opened 11 years ago

Closed 11 years ago

#19332 closed Bug (worksforme)

Tutorial 4 - error

Reported by: renee.vanheerden@… Owned by: nobody
Component: Documentation Version: 1.4
Severity: Normal Keywords:
Cc: Triage Stage: Unreviewed
Has patch: no Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: no UI/UX: no

Description

In Tutorial 4 - Use generic views: Less code is better:

Add that you have to change the following line in views.py

return HttpResponseRedirect(reverse('polls.views.results', args=(p.id,)))
to
return HttpResponseRedirect(reverse('results', args=(p.id,)))

the current version gives an error
"Reverse for 'polls.views.results' with arguments '(5,)' and keyword arguments '{}' not found."

Change History (1)

comment:1 by Tim Graham, 11 years ago

Resolution: worksforme
Status: newclosed
Note: See TracTickets for help on using tickets.
Back to Top