summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJacob Kaplan-Moss <jacob@jacobian.org>2008-09-02 16:52:42 +0000
committerJacob Kaplan-Moss <jacob@jacobian.org>2008-09-02 16:52:42 +0000
commit24d7b498499bc09b0aa13015569044d7d8c97cf1 (patch)
tree4087e6510656a7eb0edb84dd3a41dc9b9f693e71
parentb1f5ed00cbe1d538d3ffba0a9677330f2bca480f (diff)
Fixed #8496: added a note about admindocs to the project template and the tutorial. Thanks, ericvw.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@8859 bcc190cf-cafb-0310-a4f2-bffc1f526a37
-rw-r--r--django/conf/project_template/urls.py3
-rw-r--r--docs/intro/tutorial02.txt3
2 files changed, 4 insertions, 2 deletions
diff --git a/django/conf/project_template/urls.py b/django/conf/project_template/urls.py
index 7c9fab900f..af1d1db8dd 100644
--- a/django/conf/project_template/urls.py
+++ b/django/conf/project_template/urls.py
@@ -8,7 +8,8 @@ urlpatterns = patterns('',
# Example:
# (r'^{{ project_name }}/', include('{{ project_name }}.foo.urls')),
- # Uncomment the next line to enable admin documentation:
+ # Uncomment the admin/doc line below and add 'django.contrib.admindocs'
+ # to INSTALLED_APPS to enable admin documentation:
# (r'^admin/doc/', include('django.contrib.admindocs.urls')),
# Uncomment the next line to enable the admin:
diff --git a/docs/intro/tutorial02.txt b/docs/intro/tutorial02.txt
index 5babbf0e60..548898e17b 100644
--- a/docs/intro/tutorial02.txt
+++ b/docs/intro/tutorial02.txt
@@ -52,7 +52,8 @@ activate the admin site for your installation, do these three things:
# Example:
# (r'^{{ project_name }}/', include('{{ project_name }}.foo.urls')),
- # Uncomment the next line to enable admin documentation:
+ # Uncomment the admin/doc line below and add 'django.contrib.admindocs'
+ # to INSTALLED_APPS to enable admin documentation:
# (r'^admin/doc/', include('django.contrib.admindocs.urls')),
# Uncomment the next line to enable the admin: