{% extends "global/Page.html" %} {% load otree %} {% block title %} 第 {{subsession.round_number}} / {{ Constants.num_rounds }} 轮 投资任务 {% endblock %} {% block content %}

本轮游戏中,你是玩家 {{player.id_in_group}},你的初始资产是 {{ player.endowment }}

请注意:投资给小组账户之后剩下的代币将自动保留在自己的私人账户。 其中小组账户的总代币数将被扩大 {{ Constants.MULTIPLIER }} 倍,然后平均分配给小组的所有成员。


请回答以下问题:

{% formfields %}

{% if subsession.round_number != 1 and subsession.round_number != 11 %}
{% if subsession.treatment != 1 %}

【上一轮结果回顾】


下表给出了你所在小组四位玩家在上一轮的投资结果和排名表,并且按照分数高低进行了排序,分数最高的玩家排在最上面。


{% for p in prev_group.get_players|dictsort:'score_rate' %} {% if prev_player.id_in_group != p.id_in_group %} {% elif prev_player.id_in_group == p.id_in_group %} {% endif %} {% endfor %}
玩家 初始资产 投资给小组账户的代币 投资百分比 平均得分(满分100)
玩家 {{ p.id_in_group }} {{ p.endowment }} {{ p.contribution }} {{ p.contribution_prop}}% {% if subsession.treatment == 2 or subsession.treatment == 3 or subsession.treatment == 4 %}{{ p.average_scores_received }} {% elif subsession.treatment == 5 or subsession.treatment == 6 %}{{ p.average_AIscores_received }} {%endif%} {{ p.endowment }} {{ p.contribution }} {{ p.contribution_prop}} % {% if subsession.treatment == 2 or subsession.treatment == 3 or subsession.treatment == 4 %}{{ p.average_scores_received }} {% elif subsession.treatment == 5 or subsession.treatment == 6 %}{{ p.average_AIscores_received }} {%endif%}
{% elif subsession.treatment == 1 %}

【上一轮结果回顾】


下表给出了你所在小组四位玩家在上一轮的投资结果,你是玩家{{prev_player.id_in_group}}


{% for p in prev_group.get_players %} {% endfor %}
玩家 初始资产 投资给小组账户的代币 投资百分比
玩家 {{ p.id_in_group }} {{ p.endowment }} {{ p.contribution }} {{ p.contribution_prop}}%
{% endif %} {% endif %}

{% endblock %}