Guest User

poll

a guest
Jul 2nd, 2013
169
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.48 KB | None | 0 0
  1. <h1>{{ poll.question }}</h1>
  2.  
  3. {% if error_message %}<p><strong>{{ error_message }}</strong></p>{% endif %}
  4.  
  5. <!-- poll.id = pk -->
  6. <form action="{% url 'polls:vote' pk %}" method="post">
  7. {% csrf_token %}
  8. {% for choice in poll.choice_set.all %}
  9.     <input type="radio" name="choice" id="choice{{ forloop.counter }}" value="{{ choice.id }}" />
  10.     <label for="choice{{ forloop.counter }}">{{ choice.choice_text }}</label><br />
  11. {% endfor %}
  12. <input type="submit" value="Vote" />
  13. </form>
Advertisement
Add Comment
Please, Sign In to add comment