summaryrefslogtreecommitdiff
path: root/docs/intro/tutorial03.txt
diff options
context:
space:
mode:
authorSimon Willison <simon@simonwillison.net>2009-05-09 15:52:17 +0000
committerSimon Willison <simon@simonwillison.net>2009-05-09 15:52:17 +0000
commit9e97fdf357381f257bad0c7d9ac3c7613d27ad64 (patch)
treea473df8d5bd1dd294f6d2dfdd73ee24840efc3c3 /docs/intro/tutorial03.txt
parent2c2871b7c3e99fe651796bb8c12fc3e12d83a34a (diff)
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
Diffstat (limited to 'docs/intro/tutorial03.txt')
-rw-r--r--docs/intro/tutorial03.txt1
1 files changed, 1 insertions, 0 deletions
diff --git a/docs/intro/tutorial03.txt b/docs/intro/tutorial03.txt
index ca0b985508..53c2bcfcfc 100644
--- a/docs/intro/tutorial03.txt
+++ b/docs/intro/tutorial03.txt
@@ -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+)/results/$', 'mysite.polls.views.results'),
(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,