Changeset 365
- Timestamp:
- 08/01/05 14:02:55 (3 years ago)
- Files:
-
- django/trunk/docs/tutorial03.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
django/trunk/docs/tutorial03.txt
r364 r365 36 36 In Django, each view is represented by a simple Python function. 37 37 38 39 38 40 Design your URLs 39 41 ================ … … 120 122 121 123 django-admin.py runserver --settings="myproject.settings.main" 124 125 (If you're coming here straight from Tutorial 2, note that we're now running 126 the server with ``--settings=myproject.settings.main`` instead of 127 ``--settings=myproject.settings.admin``. You'll need to restart the server to 128 change the ``settings`` parameter.) 122 129 123 130 Now go to "http://localhost:8000/polls/" on your domain in your Web browser.
