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

FOR THIS ROUND,

{% if player.marginal_cost == 1 %}

Your cost coefficient is {{ player.marginal_cost }}, and therefore your cost function is \(x^2 \).

{% else %}

Your cost coefficient is {{ player.marginal_cost }}, and therefore your cost function is \({{ player.marginal_cost }}x^2 \).

{% endif %} {% if player.competitor_cost == 1 %}

Your competitor's cost coefficient is {{ player.competitor_cost }}, and therefore his/her cost function is \(x^2 \).

{% else %}

Your competitor's cost coefficient is {{ player.competitor_cost }}, and therefore his/her cost function is \({{ player.competitor_cost }}x^2 \).

{% endif %}

Prize for the winner of this round is {{ award2 }}

In this stage, what is your effort level? [0-100]

{{ form.effort2.errors }} Your effort \(x \) =


= {{player.marginal_cost}} \(\times\) ( )\(^2\) = {% if player.marginal_cost == 1 %} {% endif %} {% if player.marginal_cost == 3 %} {% endif %} {% if player.marginal_cost == 6 %} {% endif %}


{% endblock %}