Changes between Initial Version and Version 2 of Ticket #11723
- Timestamp:
- Aug 14, 2009, 1:12:34 PM (15 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #11723 – Description
initial v2 1 1 The last example at the bottom, showing the urls.py: 2 2 {{{ 3 3 urlpatterns = patterns('mysite.polls.views', 4 4 (r'^$', 'index'), … … 8 8 ) 9 9 10 10 }}} 11 11 should not contain mysite. The correct would be: 12 12 {{{ 13 13 urlpatterns = patterns('polls.views', 14 14 (r'^$', 'index'), … … 17 17 (r'^(?P<poll_id>\d+)/vote/$', 'vote'), 18 18 ) 19 19 }}} 20 20 as for decoupling.