diff --git a/polls/templates/polls/detail.html b/polls/templates/polls/detail.html
index 975db2a..1801b1c 100644
--- a/polls/templates/polls/detail.html
+++ b/polls/templates/polls/detail.html
@@ -1,6 +1,12 @@
-
{{ question.question_text }}
-
-{% for choice in question.choice_set.all %}
- - {{ choice.choice_text }}
-{% endfor %}
-
+
diff --git a/polls/templates/polls/results.html b/polls/templates/polls/results.html
new file mode 100644
index 0000000..3b2c74f
--- /dev/null
+++ b/polls/templates/polls/results.html
@@ -0,0 +1,9 @@
+{{ question.question_text }}
+
+
+{% for choice in question.choice_set.all %}
+ - {{ choice.choice_text }} -- {{ choice.votes }} vote{{ choice.votes|pluralize }}
+{% endfor %}
+
+
+Vote again?