Opened 15 years ago
Last modified 15 years ago
#11723 closed
Missed word to be removed. — at Initial Version
Reported by: | freenity | Owned by: | nobody |
---|---|---|---|
Component: | Documentation | Version: | 1.1 |
Severity: | Keywords: | ||
Cc: | Triage Stage: | Unreviewed | |
Has patch: | no | Needs documentation: | no |
Needs tests: | no | Patch needs improvement: | no |
Easy pickings: | no | UI/UX: | no |
Description
The last example at the bottom, showing the urls.py:
urlpatterns = patterns('mysite.polls.views',
(r'$', 'index'),
(r'(?P<poll_id>\d+)/$', 'detail'),
(r'(?P<poll_id>\d+)/results/$', 'results'),
(r'(?P<poll_id>\d+)/vote/$', 'vote'),
)
should not contain mysite. The correct would be:
urlpatterns = patterns('polls.views',
(r'$', 'index'),
(r'(?P<poll_id>\d+)/$', 'detail'),
(r'(?P<poll_id>\d+)/results/$', 'results'),
(r'(?P<poll_id>\d+)/vote/$', 'vote'),
)
as for decoupling.