{% load static %}
📊
投票结果
{{ question.question_text }}
{% with total_votes=question.total_votes %} {% for choice in question.choice_set.all %} {% with percentage=choice.votes|floatformat:1 %}
{{ forloop.counter }}
{{ choice.choice_text }}
{{ choice.votes }} 票
{% if total_votes > 0 %} {{ percentage }}% ({{ choice.votes }} / {{ total_votes }}) {% else %} 0% (0 / 0) {% endif %}
{% endwith %} {% endfor %}
总投票数
{{ total_votes }} 票
{% endwith %}
🔄 重新投票
🏠 返回首页