{% load static %}
{{question.question_text}}
{% if error_message %}
{{ error_message }}
{% endif %}
{% csrf_token %}
请选择你喜欢的选项:
{% for choice in question.choice_set.all %}
{{ choice.choice_text }}
选项 {{ forloop.counter }}
{% endfor %}
提交投票
← 返回投票列表