{% extends "global/Page.html" %} {% load otree %} {% block title %} Payoff for study {% endblock %} {% block content %} 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 finish the study, please complete a short questionnaire about yourself and your behavior during the experiment.
| Period | Base amount | {% if group.is_disaggregate_treatment %}Bonus received for Task A | Bonus received for Task B | Bonus received for Task C | {% endif %}Total Bonus | Investment in Project A | Investment in Project B | Investment in Project C | Total investment | Your payoff | Period that Counts | |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| {{ period.round_number }} | {{C.EMPLOYEE_ENDOWMENT|c}} | {% if group.is_disaggregate_treatment %}{{period.bonus_a|c}} | {{period.bonus_b|c}} | {{period.bonus_c|c}} | {% endif %}{{period.bonus_total}} | {{period.effort_a}} | {{period.effort_b}} | {{period.effort_c}} | {{period.effort_total}} | {{period.payoff_employee|c}} | {% if period.round_number == group.random_period %}Yes | {% else %}No | {% endif %}
{% next_button %}
{% endblock %}