Files
Reskreen/polls/templates/polls/detail.html
Ambulance Clerc c990f87413 avancé de dev
2022-02-15 14:48:18 +01:00

12 lines
550 B
HTML

<form action="{% url 'polls:vote' question.id %}" method="post">
{%csrf_token%}
<fieldset>
<legend><h1>{{question.question_txt}}</h1></legend>
{%if error_message%}<p><strong>{{error_message}}</strong></p>{%endif%}
{%for choice in question.choice_set.all%}
<input type="radio" name="choice" id="choice{{forloop.counter}}" value="{{choice.id}}" />
<label for="choice{{forlopp.counter}}">{{choice.choice_txt}}</label><br>
{% endfor %}
</fieldset>
<input type="submit" value="Vote">
</form>