Created
December 18, 2017 11:49
-
-
Save solidpple/04fdac40f118701f366e8cb14ba7e51b to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <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