1
0
mirror of https://github.com/django/django.git synced 2025-01-05 07:55:47 +00:00

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
This commit is contained in:
Justin Bronn 2010-02-23 15:00:33 +00:00
parent 8da76ffeaa
commit bca753e283
3 changed files with 6 additions and 3 deletions

View File

@ -487,8 +487,8 @@ answer newbie questions, and generally made Django that much better:
Mike Wiacek <mjwiacek@google.com> Mike Wiacek <mjwiacek@google.com>
Frank Wierzbicki Frank Wierzbicki
charly.wilhelm@gmail.com charly.wilhelm@gmail.com
Derek Willis <http://blog.thescoop.org/>
Rachel Willmer <http://www.willmer.com/kb/> Rachel Willmer <http://www.willmer.com/kb/>
Gary Wilson <gary.wilson@gmail.com>
Jakub Wilk <ubanus@users.sf.net> Jakub Wilk <ubanus@users.sf.net>
Jakub Wiśniowski <restless.being@gmail.com> Jakub Wiśniowski <restless.being@gmail.com>
Maciej Wiśniowski <pigletto@gmail.com> Maciej Wiśniowski <pigletto@gmail.com>

View File

@ -261,7 +261,7 @@ Put the following code in that template:
{% if latest_poll_list %} {% if latest_poll_list %}
<ul> <ul>
{% for poll in latest_poll_list %} {% for poll in latest_poll_list %}
<li>{{ poll.question }}</li> <li><a href="/polls/{{ poll.id }}/">{{ poll.question }}</a><</li>
{% endfor %} {% endfor %}
</ul> </ul>
{% else %} {% else %}
@ -269,7 +269,8 @@ Put the following code in that template:
{% endif %} {% endif %}
Load the page in your Web browser, and you should see a bulleted-list Load the page in your Web browser, and you should see a bulleted-list
containing the "What's up" poll from Tutorial 1. containing the "What's up" poll from Tutorial 1. The link points to the poll's
detail page.
A shortcut: render_to_response() A shortcut: render_to_response()
-------------------------------- --------------------------------

View File

@ -174,6 +174,8 @@ Now, create a ``results.html`` template:
{% endfor %} {% endfor %}
</ul> </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 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 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. without having chosen a choice, you should see the error message.