Changes between Initial Version and Version 1 of Ticket #12133
- Timestamp:
- Feb 4, 2010, 9:38:38 AM (15 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #12133
- Property Resolution → invalid
- Property Status new → closed
-
Ticket #12133 – Description
initial v1 1 1 In the last part of tutorial 4, it mention that in order to get the vote() view working, just change: 2 2 3 {{{return HttpResponseRedirect(reverse('poll_results', args=(p.id,))) }}} 3 {{{ 4 return HttpResponseRedirect(reverse('poll_results', args=(p.id,))) 5 }}} 4 6 5 7 However in the vote() view, the exception handling code also needs to change to reference the new poll_detail.html template and change poll object name 'poll' to 'object' since the poll_detail.html was changed to use the generic view.