Changes between Initial Version and Version 10 of Ticket #6286
- Timestamp:
- Jun 23, 2008, 1:36:21 PM (16 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #6286
- Property Status new → assigned
- Property Triage Stage Unreviewed → Accepted
- Property Keywords tutorial added; urls.py removed
- Property Summary Chapter 3 - Design your urls misses Admin section → tutorial part 3 - Design your urls misses admin views
- Property Owner changed from to
- Property Has patch set
-
Ticket #6286 – Description
initial v10 1 1 In Chapter 3 Design your urls section, the urlpatterns assignment seems to miss the admin url patter from the assignment: 2 2 3 {{{ 3 4 urlpatterns = patterns('', 4 5 (r'^polls/$', 'mysite.polls.views.index'), … … 7 8 (r'^polls/(?P<poll_id>\d+)/vote/$', 'mysite.polls.views.vote'), 8 9 ) 9 10 }}} 10 11 11 12 Perhaps it's because the next step is to move that section to the polls directory, but it may lead people to overwrite the admin section unaware.