{% load otree_tags staticfiles %}
{% if player.role == "Person 1" or player.role == "Person 2" %}

Instructions

In this study, you will be paired randomly and anonymously with another participant. Together with this other participant you will play a task that consists of 20 to 40 rounds. In this task, you can earn maximally 20 points per round. These point are worth real money, namely 1 euro per 100 points. The amount of points you earn in all rounds of the task, will be added up and exchanged for real money after the task is finished.

The roles of the participants

In this task, one of you will be randomly designated Person 1 and the other will be designated Person 2. Before the first round of the task, you will learn whether you are Person 1 or Person 2. You will keep the same role in all rounds of the task.

The rules of the task

In every round of the task, both Person 1 and Person 2 have to choose between 2 options: you can choose option A or option B. To both of you it is important to choose the same option. After all, if the two of you choose the same option, you will earn valuable points (which will later be exchanged for real money). However, if each of you chooses a different option, you both earn 0 points.

Another important thing to know is that the two options do not yield the same number of points for each person. Namely, if both of you choose option A, Person 1 earns {{ Constants.A_player2_payoff }} and Person 2 earns {{ Constants.A_player1_payoff }}. By contrast, if both of you choose option B, Person 1 earns {{ Constants.B_player2_payoff }} and Person 2 earns {{ Constants.B_player1_payoff }}.

In each round of the task, each of you must independently and simultaneously make a decision, without being able to communicate with one another. Your payoffs will be determined by both persons' choices, as shown below:

Person 1
Option A Option B
Person 2 Option A {{ Constants.A_player1_payoff }}, {{ Constants.A_player2_payoff }} {{ Constants.mismatch_payoff }}, {{ Constants.mismatch_payoff }}
Option B {{ Constants.mismatch_payoff }}, {{ Constants.mismatch_payoff }} {{ Constants.B_player1_payoff }}, {{ Constants.B_player2_payoff }}

In each cell, the amount to the left is the payoff for Person 2 and to the right for Person 1.

{% endif %} {% if player.role == "Leader" or player.role == "Subordinate" %}

Instructions

In this study, you will be paired randomly and anonymously with another participant. Together with this other participant you will play a task that consists of 20 to 40 rounds. In this task, you can earn maximally 20 points per round. These point are worth real money, namely 1 euro per 100 points. The amount of points you earn in all rounds of the task, will be added up and exchanged for real money after the task is finished.

The roles of the participants

In this task, one of you will be randomly designated Leader and the other will be designated Subordinate. Before the first round of the task, you will learn whether you are the Leader or the Subordinate. You will keep the same role in all rounds of the task.

The rules of the task

In every round of the task, both the Leader and the Subordinate have to choose between 2 options: you can choose option A or option B. To both of you it is important to choose the same option. After all, if the two of you choose the same option, you will earn valuable points (which will later be exchanged for real money). However, if each of you chooses a different option, you both earn 0 points.

Another important thing to know is that the two options do not yield the same number of points for each person. Namely, if both of you choose option A, the Leader earns {{ Constants.A_player2_payoff }} and the Subordinate earns {{ Constants.A_player1_payoff }}. By contrast, if both of you choose option B, the Leader earns {{ Constants.B_player2_payoff }} and the Subordinate earns {{ Constants.B_player1_payoff }}.

In each round of the task, each of you must independently and simultaneously make a decision, without being able to communicate with one another. Your payoffs will be determined by both persons' choices, as shown below:

Leader
Option A Option B
Subordinate Option A {{ Constants.A_player1_payoff }}, {{ Constants.A_player2_payoff }} {{ Constants.mismatch_payoff }}, {{ Constants.mismatch_payoff }}
Option B {{ Constants.mismatch_payoff }}, {{ Constants.mismatch_payoff }} {{ Constants.B_player1_payoff }}, {{ Constants.B_player2_payoff }}

In each cell, the amount to the left is the payoff for the Subordinate and to the right for the Leader.

{% endif %}