summaryrefslogtreecommitdiff
path: root/docs/intro/tutorial04.txt
diff options
context:
space:
mode:
authorJustin Bronn <jbronn@gmail.com>2010-02-23 15:00:33 +0000
committerJustin Bronn <jbronn@gmail.com>2010-02-23 15:00:33 +0000
commitbca753e283366101991dbc1758b66fd9339ba32d (patch)
tree541b133fe446fde4517dc5c10da556320e647c30 /docs/intro/tutorial04.txt
parent8da76ffeaa47547edb24f99a55f8c9e1a8986b90 (diff)
Fixed #12485 -- Added links to polls templates in tutorial. Thanks, gungadin for ticket and Derek Willis for patch.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@12527 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs/intro/tutorial04.txt')
-rw-r--r--docs/intro/tutorial04.txt2
1 files changed, 2 insertions, 0 deletions
diff --git a/docs/intro/tutorial04.txt b/docs/intro/tutorial04.txt
index 70e012e7af..ee3a3b2045 100644
--- a/docs/intro/tutorial04.txt
+++ b/docs/intro/tutorial04.txt
@@ -174,6 +174,8 @@ Now, create a ``results.html`` template:
{% endfor %}
</ul>
+ <a href="/polls/{{ poll.id }}/">Vote again?</a>
+
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.