Django

Code

Changeset 436

Show
Ignore:
Timestamp:
08/08/05 16:04:32 (3 years ago)
Author:
adrian
Message:

Fixed formatting problem in docs/tutorial03.txt

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • django/trunk/docs/tutorial03.txt

    r435 r436  
    2020    * Entry "detail" page -- permalink page for a single entry. 
    2121    * Year-based archive page -- displays all months with entries in the 
    22         given year. 
     22      given year. 
    2323    * Month-based archive page -- displays all days with entries in the 
    24         given month. 
     24      given month. 
    2525    * Day-based archive page -- displays all entries in the given day. 
    2626    * Comment action -- handles posting comments to a given entry. 
     
    3030    * Poll "archive" page -- displays the latest few polls. 
    3131    * Poll "detail" page -- displays a poll question, with no results but 
    32         with a form to vote. 
     32      with a form to vote. 
    3333    * Poll "results" page -- displays results for a particular poll. 
    3434    * Vote action -- handles voting for a particular choice in a particular 
    35         poll. 
     35      poll. 
    3636 
    3737In Django, each view is represented by a simple Python function.