Guest User

detail.html

a guest
Feb 2nd, 2012
135
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.53 KB | None | 0 0
  1. <h1>{{ poll.question }}</h1>
  2.  
  3. {% if error_message %}<p><strong>{{ error_message }}</strong></p>
  4. {% else %}
  5. <form action="/polls/{{ poll.id }}/vote/" method="post">
  6. {% csrf_token %}
  7. {% for choice in poll.choice_set.all %}
  8. <input type="radio" name="choice" id="choice{{ forloop.counter }}" value="{{ choice.id }}" />
  9. <label for="choice{{ forloop.counter }}">{{ choice.choice }}</label><br />
  10. {% endfor %}
  11. <input type="submit" value="Vote" />
  12. </form>
  13. {% endif %}
  14. <a href="../welcome"> Home</a>
  15. <a href="../logout"> Logout</a>
Advertisement
Add Comment
Please, Sign In to add comment