{% extends "global/Page.html" %} {% load otree static %} {% block title %} 实验结果 {% endblock %} {% block content %} {% if player.id_in_group == 1 %}

你在小组中第 {{ player.id_in_group }}个进行猜测。 你的猜测 {% if group.choice_of_urn_first == group.storyline %} 正确。 {% else %} 错误。 {% endif %} 你之后紧邻的那名参与者猜测 {% if group.choice_of_urn_second == group.storyline %} 正确。 {% else %} 错误。 {% endif %} 你面前的不透明罐子是:罐子{{ group.storyline }}。

{% elif player.id_in_group == 2 %}

你在小组中第 {{ player.id_in_group }}个进行猜测。 你的猜测 {% if group.choice_of_urn_second == group.storyline %} 正确。 {% else %} 错误。 {% endif %} 你之后紧邻的那名参与者猜测 {% if group.choice_of_urn_third == group.storyline %} 正确。 {% else %} 错误。 {% endif %} 你面前的不透明罐子是:罐子{{ group.storyline }}。

{% elif player.id_in_group == 3 %}

你在小组中第 {{ player.id_in_group }}个进行猜测。 你的猜测 {% if group.choice_of_urn_third == group.storyline %} 正确。 {% else %} 错误。 {% endif %} 你之后紧邻的那名参与者猜测 {% if group.choice_of_urn_fourth == group.storyline %} 正确。 {% else %} 错误。 {% endif %} 你面前的不透明罐子是:罐子{{ group.storyline }}。

{% elif player.id_in_group == 4 %}

你在小组中第 {{ player.id_in_group }}个进行猜测。 你的猜测 {% if group.choice_of_urn_fourth == group.storyline %} 正确。 {% else %} 错误。 {% endif %} 你之后紧邻的那名参与者猜测 {% if group.choice_of_urn_fifth == group.storyline %} 正确。 {% else %} 错误。 {% endif %} 你面前的不透明罐子是:罐子{{ group.storyline }}。

{% elif player.id_in_group == 5 %}

你在小组中第 {{ player.id_in_group }}个进行猜测。 你的猜测 {% if group.choice_of_urn_fifth == group.storyline %} 正确。 {% else %} 错误。 {% endif %} 你之后紧邻的那名参与者猜测 {% if group.choice_of_urn_sixth == group.storyline %} 正确。 {% else %} 错误。 {% endif %} 你面前的不透明罐子是:罐子{{ group.storyline }}。

{% else %}

你在小组中第 {{ player.id_in_group }}个进行猜测。 你的猜测 {% if group.choice_of_urn_sixth == group.storyline %} 正确。 {% else %} 错误。 {% endif %} 你恰好是最后一名进行猜测的参与者,因此你最终的实验收益不受其他参与者猜测正确与否的影响。 你面前的不透明罐子是:罐子{{ group.storyline }}。

{% endif%}

你最终的实验收益为{{ player.payoff }} .

感谢参与本次实验!

{% next_button %} {% endblock %}