{% extends "global/Page.html" %}
{% load otree %}
{% block title %}
減額ステージ(6期中{{ subsession.round_number }}期目の取引)
{% endblock %}
{% block content %}
提供ステージの結果
| あなたの提供額: | {{ player.contribution }} |
| 他のメンバーの提供額: | |
{% for p in players %}
| {{ p.contribution }} |
{% endfor %}
|
| グループの合計提供額: | {{ group.total_contribution }} |
|
| 減額システムによる減額 |
{% if subsession.conditionGSI == 1 and player.punish_pat == 1 %} 全員の合計提供額が30点未満だったので、全員が2点ずつ減額されます。
{% elif subsession.conditionGSI == 1 and player.punish_pat == 4 %} 全員の合計提供額が30点以上だったので、今回は誰も減額されません。
{% elif subsession.conditionGSI == 2 and player.punish_pat == 2 %} 提供額が10点未満の人がいたので、全員が2点ずつ減額されます。
{% elif subsession.conditionGSI == 2 and player.punish_pat == 5 %} 全員が10点以上提供したので、今回は誰も減額されません。
{% elif subsession.conditionGSI == 3 and player.punish_pat == 3 %} 提供額が10点未満の人だけが、2点減額されます。なので、あなたは減額されます。
{% elif subsession.conditionGSI == 3 and player.punish_pat == 6 %} 提供額が10点未満の人だけが、2点減額されます。なので、あなたは減額されません。
{% endif %}
|
|
個人間での減額ステージ
あなたが減額に使用できるのは、最大で合計{{player.punishment_endowment}}点です。
{% if form.non_form_errors %}
{% for error in form.non_form_errors %}
{{ error }}
{% endfor %}
{% endif %}
{{ form.management_form }}
| 他メンバー: |
そのメンバーの提供額 |
あなたが減額に使用する額 |
そのメンバーが減額される額: |
{% for f in form.forms %}
| メンバー {{ forloop.counter }} |
{{ f.instance.receiver.contribution }} |
{% formfield f.amount label='' %} |
{% for hidden in f.hidden_fields %}
{{ hidden }}
{% endfor %}
|
{% endfor %}
{% next_button %}
{% endblock %}
{% block styles %}
{% endblock %}
{% block scripts %}
{% endblock %}