diff options
| author | Adrian Holovaty <adrian@holovaty.com> | 2006-05-16 20:45:20 +0000 |
|---|---|---|
| committer | Adrian Holovaty <adrian@holovaty.com> | 2006-05-16 20:45:20 +0000 |
| commit | 27612d8b7d9263d883b83331883c7bbe862122e0 (patch) | |
| tree | 638b5cb0bccc37d6841c61d0181cd9a35100092d /docs/tutorial02.txt | |
| parent | aa6b13c96bb76f1603adf9fcf512ac842d478f32 (diff) | |
Fixed #1833 -- Fixed some errors in tutorials. Thanks, quarkcool@yahoo.fr
git-svn-id: http://code.djangoproject.com/svn/django/trunk@2923 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs/tutorial02.txt')
| -rw-r--r-- | docs/tutorial02.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/tutorial02.txt b/docs/tutorial02.txt index 6cdda32fbb..d95476aeaf 100644 --- a/docs/tutorial02.txt +++ b/docs/tutorial02.txt @@ -71,8 +71,8 @@ Make the poll app modifiable in the admin But where's our poll app? It's not displayed on the admin index page. Just one thing to do: We need to specify in the ``Poll`` model that ``Poll`` -objects have an admin interface. Edit the ``mysite/polls/models/polls.py`` -file and make the following change to add an inner ``Admin`` class:: +objects have an admin interface. Edit the ``mysite/polls/models.py`` file and +make the following change to add an inner ``Admin`` class:: class Poll(models.Model): # ... |
