Changeset 436
- Timestamp:
- 08/08/05 16:04:32 (3 years ago)
- Files:
-
- django/trunk/docs/tutorial03.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
django/trunk/docs/tutorial03.txt
r435 r436 20 20 * Entry "detail" page -- permalink page for a single entry. 21 21 * Year-based archive page -- displays all months with entries in the 22 given year.22 given year. 23 23 * Month-based archive page -- displays all days with entries in the 24 given month.24 given month. 25 25 * Day-based archive page -- displays all entries in the given day. 26 26 * Comment action -- handles posting comments to a given entry. … … 30 30 * Poll "archive" page -- displays the latest few polls. 31 31 * Poll "detail" page -- displays a poll question, with no results but 32 with a form to vote.32 with a form to vote. 33 33 * Poll "results" page -- displays results for a particular poll. 34 34 * Vote action -- handles voting for a particular choice in a particular 35 poll.35 poll. 36 36 37 37 In Django, each view is represented by a simple Python function.
