চতুর্থ অধ্যায়
টিউটোরিয়াল - চতুর্থ অধ্যায়
জ্যাঙ্গোয় ফর্ম তৈরি করা
{{ poll.question }}
{ % if error_message %}<p><strong>{{ error_message }}</strong></p>{ % endif %}
<form action="{ % url 'polls:vote' poll.id %}" method="post">
{ % csrf_token %}
{ % 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_text }}</label><br />
{ % endfor %}
<input type="submit" value="Vote" />
</form>{{ poll.question }}
শেষ কথা
Last updated