Skip to content

Instantly share code, notes, and snippets.

@solidpple
Created December 18, 2017 11:49
Show Gist options
  • Select an option

  • Save solidpple/04fdac40f118701f366e8cb14ba7e51b to your computer and use it in GitHub Desktop.

Select an option

Save solidpple/04fdac40f118701f366e8cb14ba7e51b to your computer and use it in GitHub Desktop.
<h1>{{ question.question_text }}</h1>
{% if error_message %}<p><strong>{{ error_message }}</strong></p>{% endif %}
<form action="{% url 'polls:vote' question.id %}" method="post">
{% csrf_token %}
{% for choice in question.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>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment