Skip to content

Instantly share code, notes, and snippets.

@photonxp
Created April 18, 2014 12:26
Show Gist options
  • Save photonxp/e3aca864391060a6021a to your computer and use it in GitHub Desktop.
Save photonxp/e3aca864391060a6021a to your computer and use it in GitHub Desktop.
polls/templates/polls/detail.html
<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>
https://docs.djangoproject.com/en/dev/intro/tutorial04/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment