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

Your effort level for this round was \(x \) = {{ player.effort }}
The total effort in your group for this round was {{ player.total_effort1 }}
Your winning probability for this round was {{ player.weight1 }}

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

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

Your effort costs for this round = \( {{player.marginal_cost}} \times {{player.effort}}^2 \ = {{player.expenditure_stage1}} \)
Your payoff for this round = \(60000 - \text{your effort costs for this round} (={{player.expenditure_stage1}}) = {{player.round_payoff}}\)

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

Your effort costs for this round = \( {{player.marginal_cost}} \times {{player.effort}}^2\ = {{player.expenditure_stage1}} \)
Your payoff for this round = \(60000 - \text{your effort costs for this round} (={{player.expenditure_stage1}}) + 30000 = {{player.round_payoff}}\)

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