{{ extends "global/Page.html" }} {% block title %} Your Outcome in Round 2 {% endblock %} {% block content %}
| Round | Chosen Effort Level | Outcome Achieved |
Base Salary (in points) |
Cost of Effort (in points) |
{% if player.condition == 1 %}Bonus{% elif player.condition == 2 %}Penalty{% elif player.condition == 3 %}Bonus or Penalty{% endif %} {% if player.condition == 1 %} (2,000 for High Outcome, 1,000 for Medium Outcome, 0 for Low Outcome) {% elif player.condition == 2 %} (0 for High Outcome, 1,000 for Medium Outcome, 2,000 for Low Outcome) {% elif player.condition == 3 %} (1,000 Bonus for High Outcome or 1,000 Penalty for Low Outcome) {% endif %} |
Net Earnings (in points) |
| 1 | {{ effort_1 }} | {{ player.outcome_1 }} | {% if player.condition == 1 %} 1,250 {% elif player.condition == 2 %} 3,250 {% elif player.condition == 3 %} 2,250 {% endif %} | ({{ cost_of_effort_1 }}) | {% if player.condition == 1 %} {{ bonus_1 }} {% elif player.condition == 2 %} {% if player.penalty_1 > 0 %}({{ penalty_1 }}){% else %}0{% endif %} {% elif player.condition == 3 %} {% if player.bonus_1 > 0 %} {{ bonus_1 }} {% elif player.penalty_1 > 0 %} ({{ penalty_1 }}) {% else %} 0 {% endif %} {% endif %} | {{ net_pay_1 }} |
| 2 | {{ effort_2 }} | {{ player.outcome_2 }} | {% if player.condition == 1 %} 1,250 {% elif player.condition == 2 %} 3,250 {% elif player.condition == 3 %} 2,250 {% endif %} | ({{ cost_of_effort_2 }}) | {% if player.condition == 1 %} {{ bonus_2 }} {% elif player.condition == 2 %} {% if player.penalty_2 > 0 %}({{ penalty_2 }}){% else %}0{% endif %} {% elif player.condition == 3 %} {% if player.bonus_2 > 0 %} {{ bonus_2 }} {% elif player.penalty_2 > 0 %} ({{ penalty_2 }}) {% else %} 0 {% endif %} {% endif %} | {{ net_pay_2 }} |
Please proceed to the next round.