{% extends "global/Page.html" %} {% load otree static %} {% block title %} Round {{ subsession.round_number }}, Stage 2 Result {% endblock %} {% block content %}

IN THIS ROUND,

Your effort level for Stage 2 was \(x \) = {{ player.effort2 }}.
The total effort in your group for Stage 2 was {{ player.total_effort2 }}.
Your winning probability for Stage 2 was {{ player.weight2 }}.

Are you the winner of this stage? {{ player.is_winner2 }}

Your effort costs for Stage 1 = \( {{player.marginal_cost}} \times {{player.effort}}^2 \ = {{player.expenditure_stage1}} \)
Your effort costs for Stage 2 = \( {{player.marginal_cost}} \times {{player.effort2}}^2 \ = {{player.expenditure_stage2}} \)
{% if player.is_winner2 == "Yes" %} Your payoff for this round =
\(60000 - \text{your effort costs for Stage 1} (={{player.expenditure_stage1}})- \text{your effort costs for Stage 2}(={{player.expenditure_stage2}}) + 30000 = {{player.round_payoff}}\) {% endif %} {% if player.is_winner2 == "No" %} Your payoff for this round =
\(60000 - \text{your effort costs for Stage 1} (={{player.expenditure_stage1}})- \text{your effort costs for Stage 2}(={{player.expenditure_stage2}}) = {{player.round_payoff}}\) {% endif %}

{% next_button %} {% endblock %}