{% extends "global/Page.html" %} {% load otree %} {% block title %} 投票权结果 {% endblock %} {% block content %}
| 每个人摇出的骰子点数和相应的投票权数目如下所示 | ||
|---|---|---|
| 小组编号 | 摇出的骰子数目 | 获得的投票权数目 |
| {% if p.id_in_group == 1 %} A(你的编号) {% else %}{% if p.id_in_group == 2 %} B(你的编号) {% else %}{% if p.id_in_group == 3 %} C(你的编号) {% else %} D(你的编号) {% endif %}{% endif %}{% endif %} | {{ p.die_rolling }} | {{ p.vote_number }} |
| {% if p.id_in_group == 1 %} A {% else %}{% if p.id_in_group == 2 %} B {% else %}{% if p.id_in_group == 3 %} C {% else %} D {% endif %}{% endif %}{% endif %} | {{ p.die_rolling }} | {{ p.vote_number }} |
{% next_button %} {% endblock %}