{% load otree %} {% block title %}

結果

{% endblock %} {% block content %}

提案者は{{ Constants.endowment }}円のうち、
受取人に{{ group.proposal }}円を渡す提案をしました。

{% if group.accepted_or_not == 0 %}

受取人はこの提案を拒否しました。

{% else %}

受取人はこの提案を了承しました。

{% endif %} それぞれ最後通牒ゲームによって、以下の報酬を得ました。


{% if player.id_in_group == 2 %} 受取人:{{ group.accepter_point }}円
エージェント(あなた):{{ group.agent_point }}円
プリンシパル:{{ group.proposer_point }}円

{% else %} 受取人:{{ group.accepter_point }}円
エージェント:{{ group.agent_point }}円
プリンシパル(あなた):{{ group.proposer_point }}円

{% endif %}

最終的な利得は次のようになりました。

{% if player.id_in_group == 2 %} 受取人:{{ group.accepter_point }}円
エージェント(あなた):{{ group.agent_point }}円
プリンシパル:{{ group.principal_lastpoint }}円

{% else %} 受取人:{{ group.accepter_point }}円
エージェント:{{ group.agent_point }}円
プリンシパル(あなた):{{ group.principal_lastpoint }}円

{% endif %}


{% next_button %} {% endblock %}