We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e289e6d commit a093a8bCopy full SHA for a093a8b
mysite/polls/templates/polls/results.html
@@ -0,0 +1,9 @@
1
+<h1>{{ question.question_text }}</h1>
2
+
3
+<ul>
4
+{% for choice in question.choice_set.all %}
5
+ <li>{{ choice.choice_text }} -- {{ choice.votes }} vote{{ choice.votes|pluralize }}</li>
6
+{% endfor %}
7
+</ul>
8
9
+<a href="{% url 'polls:detail' question.id %}">Vote again?</a>
0 commit comments