Changeset 5365
- Timestamp:
- 05/27/07 08:11:30 (1 year ago)
- Files:
-
- django/trunk/docs/tutorial03.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
django/trunk/docs/tutorial03.txt
r5039 r5365 61 61 For more details on URLconfs, see the `URLconf documentation`_. 62 62 63 When you ran ``python manage.py startproject mysite`` at the beginning of63 When you ran ``python django-admin.py startproject mysite`` at the beginning of 64 64 Tutorial 1, it created a default URLconf in ``mysite/urls.py``. It also 65 automatically set your ``ROOT_URLCONF`` setting to point at that file:: 65 automatically set your ``ROOT_URLCONF`` setting (in ``settings.py``) to point 66 at that file:: 66 67 67 68 ROOT_URLCONF = 'mysite.urls'
