{% extends "global/Page.html" %} {% load otree static %} {% block title %} 第 {{subsession.round_number}} / {{ Constants.num_rounds }} 轮 {% if subsession.treatment == 2 or subsession.treatment == 3 or subsession.treatment == 4 %}评分任务 {% elif subsession.treatment == 5 or subsession.treatment == 6 %}AI 评分中...... {% endif %} {% endblock %} {% block content %}

你是玩家 {{player.id_in_group}},你的初始资产是 {{player.endowment}},投资给小组账户 {{ player.contribution }},投资百分比为 {{player.contribution_prop}}%。

以下是其他三位玩家的决策,包括“初始资产”、“投资给小组账户的代币”以及“投资百分比”。

其中投资百分比 = 投资给小组账户的代币 / 初始资产


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


{% if subsession.treatment == 2 or subsession.treatment == 3 or subsession.treatment == 4 %} {% if subsession.round_number == 1 or subsession.round_number == 11 or subsession.round_number == 20 %}

现在请根据上述决策,在第 1 列给出您对三位玩家的评分,评分范围为 0 - {{ Constants.MAX_SCORE }} 之间的整数。

完成第 1 列评分之后,请继续完成第 2 列的三个问题。


{% csrf_token %} {% for field in form %} {% if forloop.counter0|divisibleby:2 %} {% endif %} {% if forloop.counter0|add:1|divisibleby:2 or forloop.last %} {% endif %} {% endfor %}
{{ field.label }} {{ field }}
{% else %}

现在请根据上述决策,在第 1 列给出您对三位玩家的评分,评分范围为 0 - {{ Constants.MAX_SCORE }} 之间的整数。


{% csrf_token %} {% for field in form %} {% endfor %}
{{ field.label }} {{ field }}
{% endif %}

{% elif subsession.treatment == 5 or subsession.treatment == 6 %} {% if subsession.round_number == 1 or subsession.round_number == 11 or subsession.round_number == 20 %}

现在AI正在根据上述决策,给您和其他三位玩家进行评分,评分范围为 0 - {{ Constants.MAX_SCORE }} 之间的整数。

请耐心等待,评分结束后会自动弹出按钮,然后就可点击查看AI评分结果

在您等待AI评分结果时,请回答下面四个问题。


{% csrf_token %} {% for field in form %} {% if forloop.counter0|divisibleby:1 %} {% endif %} {% if forloop.counter0|add:1|divisibleby:2 or forloop.last %} {% endif %} {% endfor %}
{{ field.label }} {{ field }}
{% else %}

现在AI正在根据上述决策,给您和其他三位玩家进行评分,评分范围为 0 - {{ Constants.MAX_SCORE }} 之间的整数。

请耐心等待,评分结束后会自动弹出按钮,然后就可点击查看AI评分结果

{% endif %}

{% if subsession.treatment == 5 %} {% elif subsession.treatment == 6 %} {% endif %} {% endif %} {% endblock %} {% block styles %} {% endblock %}