{% load static %}
Soccer Poll - Question Results
{{ question.text }}
{% if question.type.name == "player" %} {% for c in question.playerchoice_set.all %}
{{ c.choice.name }}:
{{ c.votes }} vote{{ c.votes|pluralize }}
{% endfor %} {% elif question.type.name == "team" %} {% for c in question.teamchoice_set.all %}
{{ c.choice.name }}:
{{ c.votes }} vote{{ c.votes|pluralize }}
{% endfor %} {% else %} {% for c in question.coachchoice_set.all %}
{{ c.choice.name }}:
{{ c.votes }} vote{{ c.votes|pluralize }}
{% endfor %} {% endif %}
Vote again?
return home