Guest User

results.html

a guest
Feb 2nd, 2012
122
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. <h1>{{ poll.question }}</h1>
  2. {% if error_message %}<p><strong>{{ error_message }}</strong></p>{% endif %}
  3.  
  4. <ul>
  5. {% for choice in poll.choice_set.all %}
  6. <li>{{ choice.choice }} -- {{ choice.votes }} vote{{ choice.votes|pluralize }}</li>
  7. {% endfor %}
  8. </ul>
  9.  
  10. <!--
  11. <a href="polls/{{ poll.id }}/">Vote again?</a>
  12. -->
  13.  
  14. <a href="../../welcome"> Home</a>
  15. <a href="../../logout"> Logout</a>
Advertisement
Add Comment
Please, Sign In to add comment