Changes between Initial Version and Version 10 of Ticket #6286


Ignore:
Timestamp:
Jun 23, 2008, 1:36:21 PM (16 years ago)
Author:
Ramiro Morales
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #6286

    • Property Status newassigned
    • Property Triage Stage UnreviewedAccepted
    • Property Keywords tutorial added; urls.py removed
    • Property Summary Chapter 3 - Design your urls misses Admin sectiontutorial part 3 - Design your urls misses admin views
    • Property Owner changed from nobody to John DeRosa
    • Property Has patch set
  • Ticket #6286 – Description

    initial v10  
    11In Chapter 3 Design your urls section, the urlpatterns assignment seems to miss the admin url patter from the assignment:
    22
     3{{{
    34urlpatterns = patterns('',
    45    (r'^polls/$', 'mysite.polls.views.index'),
     
    78    (r'^polls/(?P<poll_id>\d+)/vote/$', 'mysite.polls.views.vote'),
    89)
    9 
     10}}}
    1011
    1112Perhaps 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.
Back to Top