{% extends "global/Page.html" %} {% block title %}Results{% endblock %} {% block content %}

In this round, you prescribed a treatment level of {{ player.bid_amount }}. The winning treatment level is {% if subsession.round_number == 1 %} {% if player.money == 0 %} 3 {% else %} {{ player.bid_amount }} {% endif %} {% else %} {% if subsession.round_number == 2 %} {% if player.money == 0 %} 5 {% else %} {{ player.bid_amount }} {% endif %} {% else %} {% if subsession.round_number == 3 %} {% if player.money == 0 %} 7 {% else %} {{ player.bid_amount }} {% endif %} {% endif %} {% endif %} {% endif %}. {% if player.money == 0 %} You did not treat any patient this round. {% else %} Your {% if player.money > 100 %} patients {% else %} patient {% endif %} will receive a benefit of {{ player.benefits }}. {% endif %} You will receive a payoff of {{ player.money }}.

As of trial round {{ subsession.round_number }}, the total benefits that your patients received is {{ player.total_benefits }}, while your total payoff is {{ player.total_money }}.

{% if subsession.round_number < 3 %} {% else %} To continue to the actual experiment, click the button below. {% endif %}

{% if subsession.round_number < 3 %} {% next_button %} {% else %} {% endif %} {% endblock %}