{% extends "global/Page.html" %} {% load otree %} {% block title %} 领导者选举投票结果 {% endblock %} {% block content %} {% for p in player_in_all_rounds %} {% for p in player.get_others_in_group %} {% endfor %}
参与者及结果
{% 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 %} 最终获得的票数: {{ total_vote_p1 }}票 {% else %}{% if p.id_in_group == 2 %}最终获得的票数: {{ total_vote_p2 }}票 {% else %}{% if p.id_in_group == 3 %}最终获得的票数: {{ total_vote_p3 }}票 {% else %} 最终获得的票数: {{ total_vote_p4 }}票 {% endif %}{% endif %}{% endif %}
{% 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 %} 最终获得的票数: {{ total_vote_p1 }}票 {% else %}{% if p.id_in_group == 2 %}最终获得的票数: {{ total_vote_p2 }}票 {% else %}{% if p.id_in_group == 3 %}最终获得的票数: {{ total_vote_p3 }}票 {% else %} 最终获得的票数: {{ total_vote_p4 }}票 {% endif %}{% endif %}{% endif %}

你的小组编号是{{ player.group_label }}, 在这次领导者选举中,你 {% if p.is_winner %} 当选 {% else %} 落选 {% endif %} 了。

在接下来的实验任务中,你的角色是 {% if p.is_winner %} 领导者 {% else %} 小组成员 {% endif %}。

{% endfor %} {% next_button %} {% endblock %}