{% extends "global/Page.html" %}
{% load otree static %}
{% block styles %}
{% endblock %}
{% block title %}
{% if player.id_in_group == 1%}
Player 1 Instructions
{% else %}
Player 2 Instructions
{% endif%}
{% endblock %}
{% block content %}
{% if player.id_in_group == 1%}
You have been randomly assigned the role of PLAYER 1. You will remain in this role for the remainder of this task. As PLAYER 1, you will receive an allocation of {{ten}}. Within the next stage of the experiment, for each round, the computer will randomly display a secret number representing the amount you should send to PLAYER 2. This secret number ranges from 0 to 10 in increments of {{one}}. Your task is to decide the amount you want to report as the secret number to PLAYER 2.
YOU may report any number you wish to report (from 0 to 10).
Your payment from this task is {{ten}} minus the amount you report as the secret number to PLAYER 2.
For example, if YOU report that the secret number is 2, your payment will be equal to {{sub}} or {{eigth}}. PLAYER 2 will receive {{two}}.
Another example, if YOU report that the secret number is 8, your payment will be equal to {{sub2}} or {{two}}. PLAYER 2 will receive {{eigth}}.
{% else %}You have been randomly assigned the role of PLAYER 2. You will remain in this role for the remainder of this task. PLAYER 1 received an allocation of $10. Within the next stage of the experiment, for each round, the computer will randomly display a secret number representing the amount PLAYER 1 should send to YOU. This secret number ranges from 0 to 10 in increments of {{one}}.
PLAYER 1 will report the value of the secret number. PLAYER 1 may report any number he/she wishes to report.
Your payment for this task is equal to the amount PLAYER 1 reports as the secret number.
{% if player.treatment == 'clear_signal' or player.treatment == 'clear_signal_ecu'%}YOU will receive a signal about the value of the secret number. The signal YOU will receive is exactly equal to the computer’s secret number.
{% else %}YOU will receive a signal about the value of the secret number. The signal YOU will receive is that the value of the secret number ranges between 0 and 10.
{% endif %} {% endif%}Please click next to continue with the experiment.
{% next_button %} {% endblock %}