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

{% block content %} {% if player.activeness == 1 %} In this round, you are matched with a ACTIVE client. This means that he/she may NOT always follow your recommended solution. {% endif %} {% if player.activeness == 0 %} In this round, you are matched with a PASSIVE client. This means that he/she will always follow your recommended solution. {% endif %}

Please choose one of the six accuracy levels below to conduct the diagnosis.

The client will be able to observe your accuracy level.

{% for choice in form.precision_choice %} {% endfor %}
Diagnostic Accuracy {{ choice }}
Cost of Diagnosis in Tokens 0 1 4 9 16 25


Note: In today's game, your assigned contract is {% if player.expert_altruism == 1 %} 100-Contract. This means that if your matched client's problem is solved, you will gain extra 100 tokens.{% endif %} {% if player.expert_altruism == 0.6 %}60-Contract. This means that if your matched client's problem is solved, you will gain extra 60 tokens. {% endif %} {% if player.expert_altruism == 0.2 %} 20-Contract. This means that if your matched client's problem is solved, you will gain extra 20 tokens. {% endif %} {% if player.expert_altruism == 0 %} 0-Contract. This means that if your matched client's problem is solved, you will gain extra 0 tokens. {% endif %}



{% next_button %} {% endblock %}