{% extends "global/Page.html" %} {% load otree static %} {% block title %} 今シーズンの結果 {% endblock %} {% block content %}

あなた自身のごみの処理

{% if player.gomi == 1 and player.toxicgomi == 0 %} あなたは、有害ごみを無料で不法投棄しました。


{% elif player.gomi == 1 and player.toxicgomi == Constants.proper %} あなたは、有害ごみを{{ Constants.proper }}払って適正処理しました。


{% else %} あなたは、無料で普通ごみを処理しました。


{% endif %} {% if player.gomi != 1 and player.inspection == Constants.punishment_endowment %} あなた自身の監視の決定

あなたは、{{ Constants.punishment_endowment }}を払って監視を行いました。


{% elif player.gomi != 1 and player.inspection != Constants.punishment_endowment %} あなた自身の監視の決定

あなたは、監視を行いませんでした。


{% else %} {% endif %} グループの監視

{% if group.group_inspection >= Constants.punishment %} グループでは、監視が行われました。
その結果、{{ group.group_ild }}個の不法投棄が見つかりました。


{% else %} 誰も監視を行いませんでした。


{% endif %} {% if group.group_inspection >= Constants.punishment and player.gomi == 1 and player.toxicgomi == 0 %} 監視による罰金

あなたには、罰金{{ Constants.punishment }}が科されました。


{% else %} {% endif %} 結果

あなたはこのシーズンで{{ player.payoff }}を使いました。


{% next_button %} {% endblock %}