Skip to content

Commit

Permalink
Fixed mistake in tutorial01 -- it mentioned expiration date by mistak…
Browse files Browse the repository at this point in the history
…e. Thanks for the pointer, Barryp!

git-svn-id: http://code.djangoproject.com/svn/django/trunk@143 bcc190cf-cafb-0310-a4f2-bffc1f526a37
  • Loading branch information
adrianholovaty committed Jul 17, 2005
1 parent c9cc6f8 commit a1ef6aa
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/tutorial01.txt
Original file line number Diff line number Diff line change
Expand Up @@ -116,8 +116,8 @@ The first step in writing a database Web app in Django is to define your models
data model in one place and automatically derive things from it.

In our simple poll app, we'll create two models: polls and choices. A poll has
a question, a publication date and an expiration date. A choice has two fields:
the text of the choice and a vote tally. Each choice is associated with a poll.
a question and a publication date. A choice has two fields: the text of the
choice and a vote tally. Each choice is associated with a poll.

Edit the ``polls/models/polls.py`` file so that it looks like this::

Expand Down

0 comments on commit a1ef6aa

Please sign in to comment.