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

IN THIS ROUND,

Your effort level for Stage 1 was \(x \) = {{ player.effort }}
The total effort in your subgroup for Stage 1 was {{ player.total_effort1 }}
Your winning probability for this stage was {{ player.weight1 }}

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

{% if player.is_winner1 == "Yes" %}

Your effort costs for Stage 1 = \( {{player.marginal_cost}} \times {{player.effort}}^2 \ = {{player.expenditure_stage1}} \)

{% endif %} {% if player.is_winner1 == "No" %}

Your effort costs for Stage 1 = \( {{player.marginal_cost}} \times {{player.effort}}^2\ = {{player.expenditure_stage1}} \)

Your payoff for this round = \(60000 - \text{your effort costs for Stage 1} (={{player.expenditure_stage1}}) = {{player.round_payoff}}\)

{% endif %} {% next_button %} {% endblock %}