{% extends "global/Page.html" %}
{% load otree %}
{% block title %}
生産量の選択
{% endblock %}
{% block content %}
{% if player.id_in_group == Constants.company1_manager_id %}
あなたは企業1の経営者です。
あなたのオーナーは契約{{ c1 }}を選択し、
ライバル企業のオーナーは契約{{ c2 }}を選択しました。
{% if c1 == 1 and c2 == 1 %}
経営者の生産量と報酬の関係
| 自社\ライバル |
{{Constants.production1}} |
{{Constants.production2}} |
{{Constants.production3}} |
{{Constants.production4}} |
| {{Constants.production1}} |
{% for ritoku1 in ritoku111_lst %}
{{ ritoku1 }} |
{% endfor %}
| {{Constants.production2}} |
{% for ritoku2 in ritoku112_lst %}
{{ ritoku2 }} |
{% endfor %}
| {{Constants.production3}} |
{% for ritoku3 in ritoku113_lst %}
{{ ritoku3 }} |
{% endfor %}
| {{Constants.production4}} |
{% for ritoku4 in ritoku114_lst %}
{{ ritoku4 }} |
{% endfor %}
{% elif c1 == 1 and c2 == 2 %}
経営者の生産量と報酬の関係
| 自社\ライバル |
{{Constants.production1}} |
{{Constants.production2}} |
{{Constants.production3}} |
{{Constants.production4}} |
| {{Constants.production1}} |
{% for ritoku1 in ritoku111_lst %}
{{ ritoku1 }} |
{% endfor %}
| {{Constants.production2}} |
{% for ritoku2 in ritoku112_lst %}
{{ ritoku2 }} |
{% endfor %}
| {{Constants.production3}} |
{% for ritoku3 in ritoku113_lst %}
{{ ritoku3 }} |
{% endfor %}
| {{Constants.production4}} |
{% for ritoku4 in ritoku114_lst %}
{{ ritoku4 }} |
{% endfor %}
{% elif c1 == 2 and c2 == 1 %}
経営者の生産量と報酬の関係
| 自社\ライバル |
{{Constants.production1}} |
{{Constants.production2}} |
{{Constants.production3}} |
{{Constants.production4}} |
| {{Constants.production1}} |
{% for ritoku1 in ritoku221_lst %}
{{ ritoku1 }} |
{% endfor %}
| {{Constants.production2}} |
{% for ritoku2 in ritoku222_lst %}
{{ ritoku2 }} |
{% endfor %}
| {{Constants.production3}} |
{% for ritoku3 in ritoku223_lst %}
{{ ritoku3 }} |
{% endfor %}
| {{Constants.production4}} |
{% for ritoku4 in ritoku224_lst %}
{{ ritoku4 }} |
{% endfor %}
{% elif c1 == 2 and c2 == 2 %}
経営者の生産量と報酬の関係
| 自社\ライバル |
{{Constants.production1}} |
{{Constants.production2}} |
{{Constants.production3}} |
{{Constants.production4}} |
| {{Constants.production1}} |
{% for ritoku1 in ritoku221_lst %}
{{ ritoku1 }} |
{% endfor %}
| {{Constants.production2}} |
{% for ritoku2 in ritoku222_lst %}
{{ ritoku2 }} |
{% endfor %}
| {{Constants.production3}} |
{% for ritoku3 in ritoku223_lst %}
{{ ritoku3 }} |
{% endfor %}
| {{Constants.production4}} |
{% for ritoku4 in ritoku224_lst %}
{{ ritoku4 }} |
{% endfor %}
{% endif %}
{% else %}
あなたは企業2の経営者です。
あなたのオーナーは契約{{ c2 }}を選択し、
ライバル企業のオーナーは契約{{ c1 }}を選択しました。
{% if c1 == 1 and c2 == 1 %}
経営者の生産量と報酬の関係
| 自社\ライバル |
{{Constants.production1}} |
{{Constants.production2}} |
{{Constants.production3}} |
{{Constants.production4}} |
| {{Constants.production1}} |
{% for ritoku1 in ritoku111_lst %}
{{ ritoku1 }} |
{% endfor %}
| {{Constants.production2}} |
{% for ritoku2 in ritoku112_lst %}
{{ ritoku2 }} |
{% endfor %}
| {{Constants.production3}} |
{% for ritoku3 in ritoku113_lst %}
{{ ritoku3 }} |
{% endfor %}
| {{Constants.production4}} |
{% for ritoku4 in ritoku114_lst %}
{{ ritoku4 }} |
{% endfor %}
{% elif c1 == 2 and c2 == 1 %}
経営者の生産量と報酬の関係
| 自社\ライバル |
{{Constants.production1}} |
{{Constants.production2}} |
{{Constants.production3}} |
{{Constants.production4}} |
| {{Constants.production1}} |
{% for ritoku1 in ritoku111_lst %}
{{ ritoku1 }} |
{% endfor %}
| {{Constants.production2}} |
{% for ritoku2 in ritoku112_lst %}
{{ ritoku2 }} |
{% endfor %}
| {{Constants.production3}} |
{% for ritoku3 in ritoku113_lst %}
{{ ritoku3 }} |
{% endfor %}
| {{Constants.production4}} |
{% for ritoku4 in ritoku114_lst %}
{{ ritoku4 }} |
{% endfor %}
{% elif c1 == 1 and c2 == 2 %}
経営者の生産量と報酬の関係
| 自社\ライバル |
{{Constants.production1}} |
{{Constants.production2}} |
{{Constants.production3}} |
{{Constants.production4}} |
| {{Constants.production1}} |
{% for ritoku1 in ritoku221_lst %}
{{ ritoku1 }} |
{% endfor %}
| {{Constants.production2}} |
{% for ritoku2 in ritoku222_lst %}
{{ ritoku2 }} |
{% endfor %}
| {{Constants.production3}} |
{% for ritoku3 in ritoku223_lst %}
{{ ritoku3 }} |
{% endfor %}
| {{Constants.production4}} |
{% for ritoku4 in ritoku224_lst %}
{{ ritoku4 }} |
{% endfor %}
{% elif c1 == 2 and c2 == 2 %}
経営者の生産量と報酬の関係
| 自社\ライバル |
{{Constants.production1}} |
{{Constants.production2}} |
{{Constants.production3}} |
{{Constants.production4}} |
| {{Constants.production1}} |
{% for ritoku1 in ritoku221_lst %}
{{ ritoku1 }} |
{% endfor %}
| {{Constants.production2}} |
{% for ritoku2 in ritoku222_lst %}
{{ ritoku2 }} |
{% endfor %}
| {{Constants.production3}} |
{% for ritoku3 in ritoku223_lst %}
{{ ritoku3 }} |
{% endfor %}
| {{Constants.production4}} |
{% for ritoku4 in ritoku224_lst %}
{{ ritoku4 }} |
{% endfor %}
{% endif %}
{% endif %}
あなたは4つの生産量の中から、自分の報酬が最大になるような生産量を選択してください。
{% formfields %}
{% next_button %}
{% include Constants.instructions_template %}
{% endblock %}