Django

Code

Changeset 143

Show
Ignore:
Timestamp:
07/17/05 01:12:58 (3 years ago)
Author:
adrian
Message:

Fixed mistake in tutorial01 -- it mentioned expiration date by mistake. Thanks for the pointer, Barryp!

Files:

Legend:

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

    r142 r143  
    117117 
    118118In our simple poll app, we'll create two models: polls and choices. A poll has 
    119 a question, a publication date and an expiration date. A choice has two fields: 
    120 the text of the choice and a vote tally. Each choice is associated with a poll. 
     119a question and a publication date. A choice has two fields: the text of the 
     120choice and a vote tally. Each choice is associated with a poll. 
    121121 
    122122Edit the ``polls/models/polls.py`` file so that it looks like this::