summaryrefslogtreecommitdiff
path: root/docs/tutorial04.txt
diff options
context:
space:
mode:
authorAdrian Holovaty <adrian@holovaty.com>2005-08-09 15:34:20 +0000
committerAdrian Holovaty <adrian@holovaty.com>2005-08-09 15:34:20 +0000
commite79eb09f2169ba9497283ab1a9e31c49e857fa93 (patch)
treea2b423ec907d94fa7334e956a29d344d9f85672d /docs/tutorial04.txt
parentd87ca56c63a8965dfb8b45b517c2bfd8aab8d5f9 (diff)
Fixed #293 -- Typo in tutorial04. Thanks, espen@grindhaug.org
git-svn-id: http://code.djangoproject.com/svn/django/trunk@439 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs/tutorial04.txt')
-rw-r--r--docs/tutorial04.txt5
1 files changed, 0 insertions, 5 deletions
diff --git a/docs/tutorial04.txt b/docs/tutorial04.txt
index 20e2a2e3ba..0215018c82 100644
--- a/docs/tutorial04.txt
+++ b/docs/tutorial04.txt
@@ -129,11 +129,6 @@ Now, create a ``results.html`` template::
{% endfor %}
</ul>
-And edit the ``detail.html`` template to add this snippet toward the top of the
-page somewhere::
-
- {% if error_message %}<p><strong>{{ error_message }}</strong></p>{% endif %}
-
Now, go to ``/polls/1/`` in your browser and vote in the poll. You should see a
results page that gets updated each time you vote. If you submit the form
without having chosen a choice, you should see the error message.