{{ question.question_text }}
Is active: {{ question.is_active }}
Current Votes
{% for c in question.choice_set.all %}
{{ c.choice_text }}: {{ c.votes }}
{% endfor %}
{% csrf_token %}
Choices
{% if error_message %}
{{ error_message }}
{% endif %} {% for choice in question.choice_set.all %}
{{ choice.choice_text }}
{% endfor %}