{% extends "global/Page.html" %} {% load otree static %} {% block title %} 結果の確認 {% endblock %} {% block content %}
あなたは初期保有ポイントとして{{ Constants.endowment }}を持っていました。
{% if player.contribution == Constants.endowment %}
あなたは、その{{ Constants.endowment }}をグループに貢献しました。
{% else %}
あなたは、その{{ Constants.endowment }}をグループに貢献せず、手元に残しました。
{% endif %}
あなたのグループでは合計{{ group.total_contribution }}が貢献されていました。
その結果、一人あたりには{{ group.individual_share }}が返されました。
監視コストとして、あなたは{{ player.inspection }}払いました。
{% if group.group_inspection >= Constants.punishment %}
あなたのグループでは、監視が行われました。
あなたは監視により{{player.individual_punishment }}を失いました。
{% else %}
あなたのグループでは誰も監視を行いませんでした。
{% endif %}
{{ Constants.endowment }}-{{ player.contribution }}+{{ group.individual_share }}-{{ Constants.punishment_endowment }}-{{ player.individual_punishment}}={{ player.payoff }}
したがって,あなたはこのラウンドで{{ player.payoff }}を受け取りました.
{% next_button %} {% endblock %}