Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <h1>{{ poll.question }}</h1>
- {% if error_message %}<p><strong>{{ error_message }}</strong></p>{% endif %}
- <!-- poll.id = pk -->
- <form action="{% url 'polls:vote' pk %}" 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>
Advertisement
Add Comment
Please, Sign In to add comment