Ticket #4875: poll_results.html

File poll_results.html, 186 bytes (added by joachimschwarz@…, 17 years ago)
Line 
1<h1>{{ object.question }}</h1>
2
3<ul>
4{% for choice in object.choice_set.all %}
5 <li>{{ choice.choice }} -- {{ choice.votes }} vote{{ choice.votes|pluralize }}</li>
6{% endfor %}
7</ul>
Back to Top