Changes between Initial Version and Version 4 of Ticket #9944
- Timestamp:
- Mar 30, 2009, 1:49:20 PM (16 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #9944
- Property Milestone → 1.1
- Property Triage Stage Unreviewed → Ready for checkin
- Property Has patch set
- Property Keywords kkmegapatch added
- Property Owner changed from to
- Property Status new → assigned
-
Ticket #9944 – Description
initial v4 5 5 ... is the following text: 6 6 7 ''Now, let's create a Django view that handles the submitted data and does something with it. Remember, in Tutorial 3, we created a URLconf for the polls application that includes this line: 7 ''Now, let's create a Django view that handles the submitted data and does something with it. Remember, in Tutorial 3, we created a URLconf for the polls application that includes this line:'' 8 8 9 '' (r'^(?P<poll_id>\d+)/vote/$', 'mysite.polls.views.vote'), 9 {{{(r'^(?P<poll_id>\d+)/vote/$', 'mysite.polls.views.vote'),}}} 10 10 11 11 12 12 However, if you follow the instructions at the end of the previous chapter under "Decoupling the URLconfs", then the line reads as follows at the current point in the tutorial: 13 13 14 '' (r'^(?P<poll_id>\d+)/vote/$', 'vote'), 14 {{{(r'^(?P<poll_id>\d+)/vote/$', 'vote'),}}} 15 15 16 16 I imagine that someone added the "Decoupling the URLconfs" section later and didn't fully harmonize Tutorial 4 with this change.