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:
parent
8da76ffeaa
commit
bca753e283
2
AUTHORS
2
AUTHORS
|
@ -487,8 +487,8 @@ answer newbie questions, and generally made Django that much better:
|
|||
Mike Wiacek <mjwiacek@google.com>
|
||||
Frank Wierzbicki
|
||||
charly.wilhelm@gmail.com
|
||||
Derek Willis <http://blog.thescoop.org/>
|
||||
Rachel Willmer <http://www.willmer.com/kb/>
|
||||
Gary Wilson <gary.wilson@gmail.com>
|
||||
Jakub Wilk <ubanus@users.sf.net>
|
||||
Jakub Wiśniowski <restless.being@gmail.com>
|
||||
Maciej Wiśniowski <pigletto@gmail.com>
|
||||
|
|
|
@ -261,7 +261,7 @@ Put the following code in that template:
|
|||
{% if latest_poll_list %}
|
||||
<ul>
|
||||
{% for poll in latest_poll_list %}
|
||||
<li>{{ poll.question }}</li>
|
||||
<li><a href="/polls/{{ poll.id }}/">{{ poll.question }}</a><</li>
|
||||
{% endfor %}
|
||||
</ul>
|
||||
{% else %}
|
||||
|
@ -269,7 +269,8 @@ Put the following code in that template:
|
|||
{% endif %}
|
||||
|
||||
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()
|
||||
--------------------------------
|
||||
|
|
|
@ -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.
|
||||
|
|
Loading…
Reference in New Issue