==Django 最初のアプリケーション 4==
[[Django 最初のアプリケーション 3]] Django][Python][[[前]]
Pythonの概要も分かり易い.
===シンプルなフォームの作成===
*[Django 最初のアプリケーション 3]で作成した、Poll詳細テンプレートを、HTML Formエレメントを持つように変更
<<h1>>{{ poll.question }}<</h1>> {% if error_message %}<<p><><strong>>{{ error_message }}<</strong><></p>>{% endif %} <<form action="/polls/{{ poll.id }}/vote/" method="post">>
{% for choice in poll.choice_set.all %}
<<input type="radio" name="choice" id="choice{{ forloop.counter }}" value="{{ choice.id }}" />> <<label for="choice{{ forloop.counter }}">>{{ choice.choice }}<</label><><br/>>{% endfor %} <<input type="submit" value="vote" />> <</form>>
[[File:0379_django_firstapp31.jpg]]
*mysite/polls/urls.py には、以下のように記述していた
(r'^(?P<<poll_id>>\d+)/vote/$', 'vote'),
====vote()、results()関数の記述====
====結果表示テンプレートの作成====
<<h1>>{{ poll.question }}<</h1>>
<<ul>>
{% for choice in poll.choice_set.all %}
<<li>>{{ choice.choice }} -- {{ choice.votes }} vote{{choice.votes|pluralize}}<</li>>
{% endfor %}
<</ul>>
=====投票すると結果表示される=====
*結果表示