{% extends "global/Page.html" %} {% load otree static %} {% block title %} Part 2 - {% if player.r_aux1 >= 0.5 %} Private {% else %} Public {% endif %} guess. {% endblock %} {% block content %}

Your number is {{ player.p_value }}

First, please make your {% if player.r_aux1 >= 0.5 %} private {% else %} public {% endif %} guess about the average of the three numbers. Your second payment opportunity depends on this {% if player.r_aux1 >= 0.5 %} private {% else %} public {% endif %} guess. If your guess is within 3 points below or above the actual average, you will get a payment of $2.0. If your guess is further away from the actual average, you will get nothing.

{% if player.r_aux1 >= 0.5 %}

{% formfield player.guess1 label = "Private guess:" %}

{% else %}

{% formfield player.guess1 label = "Public guess:" %}

{% endif %}

Please click “next” to continue and make the next guess.

{% next_button %} {% endblock %}