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

Your number is {{ player.p_value }}

Now, please make your {% if player.r_aux1 >= 0.5 %} public {% else %} private {% endif %} guess about the average of the three numbers. Your second payment opportunity depends on this {% if player.r_aux1 >= 0.5 %} public {% else %} private {% 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.guess2 label = "Public guess:" %}

{% else %}

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

{% endif %}

Please click “Next” to continue.

{% next_button %} {% endblock %}