{% extends "global/Page.html" %} {% load otree %} {% block title %} {% if subsession.round_number != C.NUM_ROUNDS %} Payoff report for period {{subsession.round_number}} of {{C.NUM_ROUNDS}} {% else %} Payoff for study {% endif %} {% endblock %} {% block content %} {% if subsession.round_number != C.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 | Employee investment in Project A | Employee investment in Project B | Employee investment in Project C | {% if group.is_disaggregate_treatment %}Bonus awarded for Project A | Bonus awarded for Project B | Bonus awarded for Project C | {% endif %}Total bonus | {% if subsession.round_number == C.NUM_ROUNDS %}Base amount | Return on employee effort | Cost of collecting information | Your total payoff | Period that Counts | {% endif %}|||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| {{ period.round_number }} | {{period.effort_a}} | {% if period.collected_expensive_info %}{{period.effort_b}} | {{period.effort_c}} | {% else %}You did not buy this information | You did not buy this information | {%endif%} {% if group.is_disaggregate_treatment %}{{period.bonus_a}} | {{period.bonus_b}} | {{period.bonus_c}} | {% endif %}{{period.bonus_total}} | {% if subsession.round_number == C.NUM_ROUNDS %}{{C.SUPERVISOR_ENDOWMENT}} | {{period.profit}} | {{period.cost_info_supervisor}} | {{period.payoff_supervisor}} | {% if period.round_number == group.random_period %}Yes | {% else %}No | {% endif %} {% endif %}
{% next_button %}
{% endblock %}