Added admin URLs back to the urls.py example in the tutorial - had a complaint from someone following the tutorial that they got to that step and the admin stopped working and they weren't sure why
git-svn-id: http://code.djangoproject.com/svn/django/trunk@10727 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
parent
2c2871b7c3
commit
9e97fdf357
|
@ -87,6 +87,7 @@ Time for an example. Edit ``mysite/urls.py`` so it looks like this::
|
||||||
(r'^polls/(?P<poll_id>\d+)/$', 'mysite.polls.views.detail'),
|
(r'^polls/(?P<poll_id>\d+)/$', 'mysite.polls.views.detail'),
|
||||||
(r'^polls/(?P<poll_id>\d+)/results/$', 'mysite.polls.views.results'),
|
(r'^polls/(?P<poll_id>\d+)/results/$', 'mysite.polls.views.results'),
|
||||||
(r'^polls/(?P<poll_id>\d+)/vote/$', 'mysite.polls.views.vote'),
|
(r'^polls/(?P<poll_id>\d+)/vote/$', 'mysite.polls.views.vote'),
|
||||||
|
(r'^admin/', include(admin.site.urls)),
|
||||||
)
|
)
|
||||||
|
|
||||||
This is worth a review. When somebody requests a page from your Web site -- say,
|
This is worth a review. When somebody requests a page from your Web site -- say,
|
||||||
|
|
Loading…
Reference in New Issue