Changes between Initial Version and Version 2 of Ticket #11723


Ignore:
Timestamp:
Aug 14, 2009, 1:12:34 PM (15 years ago)
Author:
Alex Gaynor
Comment:

Please use preview.

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #11723 – Description

    initial v2  
    11The last example at the bottom, showing the urls.py:
    2 
     2{{{
    33urlpatterns = patterns('mysite.polls.views',
    44    (r'^$', 'index'),
     
    88)
    99
    10 
     10}}}
    1111should not contain mysite. The correct would be:
    12 
     12{{{
    1313urlpatterns = patterns('polls.views',
    1414    (r'^$', 'index'),
     
    1717    (r'^(?P<poll_id>\d+)/vote/$', 'vote'),
    1818)
    19 
     19}}}
    2020as for decoupling.
Back to Top