{% extends "global/Page.html" %} {% block title %}Results{% endblock %} {% block content %}
In this round, you prescribed a treatment level of {{ player.bid_amount }}. The best 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 %}. Your patient will receive a benefit of {{ player.benefits }}. 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 %}