Fixed #850 -- Made clarification in docs/tutorial02.txt. Thanks, Daniel

git-svn-id: http://code.djangoproject.com/svn/django/trunk@1300 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Adrian Holovaty 2005-11-20 16:20:24 +00:00
parent 85c50d4fdf
commit 58f95c3a6a
1 changed files with 1 additions and 1 deletions

View File

@ -33,7 +33,7 @@ activate the admin site for your installation, do these three things:
* Add ``"django.contrib.admin"`` to your ``INSTALLED_APPS`` setting.
* Run the command ``django-admin.py install admin``. This will create an
extra database table that the admin needs.
* Edit your ``myproject.urls`` file and uncomment the line below
* Edit your ``myproject/urls.py`` file and uncomment the line below
"Uncomment this for admin:". This file is a URLconf; we'll dig into
URLconfs in the next tutorial. For now, all you need to know is that it
maps URL roots to applications.