{% extends "global/Page.html" %} {% load otree %} {% block title %} {% if subsession.round_number != Constants.num_rounds %} Payoff report for period {{subsession.round_number}} of {{Constants.num_rounds}} {% else %} Payoff for study {% endif %} {% endblock %} {% block content %} {% if group.confrontation == 0 %}
The employee did not confront you. The confrontation cost of {{Constants.confronatation_supervisor|c}} will not be deducted from your payoff in this period.
{% endif %} {% if group.confrontation == 1 %}The employee confronted you. The confrontation cost of {{Constants.confronatation_supervisor|c}} will be deducted from your payoff in this period.
{% endif %} {% if subsession.round_number != Constants.num_rounds %}Next, you will make decisions for period {{ next_round }}.
{% else %}This was the final period. A lottery randomly selected the Period that Counts to be {{group.random_period}}. Your payoff in that period was {{participant.payoff|c}}. You can see your choices and payoffs for each period in the table below.
To complete the study, please complete a short questionnaire about yourself and your behavior during the experiment.
{% endif %}| Period | Payoff | Salary | Additional compensation | Profit | Confrontation cost | Bonus to employee | {% if subsession.round_number == Constants.num_rounds %}Period that Counts | {% endif %}|||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| {{period.round_number}} | {{period.payoff_supervisor}} | {{Constants.supervisor_endowment}} | {{period.supervisor_bonus}} | {{period.profit}} | {% if period.confrontation == 0 %}0 | {% else %}{{Constants.confronatation_supervisor}} | {% endif %}{{period.bonus}} | {% if subsession.round_number == Constants.num_rounds %} {% if period.round_number == group.random_period %}Yes | {% else %}No | {% endif %} {% endif %}|||||
| Period | Payoff | Salary | Additional compensation | Profit | Confrontation cost | Number of winning balls bought by employee | Bonus to employee | {% if subsession.round_number == Constants.num_rounds %}Period that Counts | {% endif %}||||||
| {{ period.round_number }} | {{period.payoff_supervisor}} | {{Constants.supervisor_endowment}} | {{period.supervisor_bonus}} | {{period.profit}} | {% if period.confrontation == 0 %}0 | {% else %}{{Constants.confronatation_supervisor}} | {% endif %}{{period.effort}} | {{period.bonus}} | {% if subsession.round_number == Constants.num_rounds %} {% if period.round_number == group.random_period %}Yes | {% else %}No | {% endif %} {% endif %}||||
| Period | Payoff | Salary | Additional compensation | Profit | Confrontation cost | Number of winning balls bought by employee | Bonus to employee | {% if subsession.round_number == Constants.num_rounds %}Period that Counts | {% endif %}||||||
| {{ period.round_number }} | {% if subsession.round_number == Constants.num_rounds %}{{period.payoff_supervisor}} | {{Constants.supervisor_endowment}} | {{period.supervisor_bonus}} | {{period.profit}} | {% else %}Will be displayed after last period | {{Constants.supervisor_endowment}} | Will be displayed after last period | Will be displayed after last period | {%endif%} {% if period.confrontation == 0 %}0 | {% else %}{{Constants.confronatation_supervisor}} | {% endif %}{{period.effort}} | {{period.bonus}} | {% if subsession.round_number == Constants.num_rounds %} {% if period.round_number == group.random_period %}Yes | {% else %}No | {% endif %} {% endif %}
{% next_button %}
{% endblock %} {% block scripts %} {% endblock %}