{% extends "global/Page.html" %} {% load otree %} {% block title %} 結果 {% endblock %} {% block content %} 第1ラウンドの結果は以下の通りです。
あなたの獲得ポイント: {{ player.payoff1 }}
他二人の獲得ポイント: {% for p in player.get_others_in_group %}{{ p.payoff1 }} {% endfor %}

以上より、それぞれのプレイヤーの所得は以下の通りです。
あなたの所得: {{ player.payoff1 }}
他二人の所得: {% for p in player.get_others_in_group %}{{ p.payoff1 }} {% endfor %} {% formfields %} {% next_button %} {% include Constants.instructions_template %} {% endblock %}