{% extends "global/Base.html" %} {% load staticfiles otree %} {% load i18n %} {# ****************************************************************************************************************** #} {# *** STYLES *** #} {# ****************************************************************************************************************** #} {% block styles %} {% endblock %} {# ****************************************************************************************************************** #} {# *** TITLE *** #} {# ****************************************************************************************************************** #} {% block title %} {% trans "Role Assignment" %} {% endblock %} {# ****************************************************************************************************************** #} {# *** CONTENT *** #} {# ****************************************************************************************************************** #} {% block content %}
{% if player.id_in_group == 1 %}

{% blocktrans trimmed %} You have been randomly assigned the role of player A. {% endblocktrans %}

{% blocktrans trimmed with n=num_choices %} In the following, you will be asked to make {{ n }} binary decisions. At the end of this task, one of these decisions will be randomly chosen, determining both your payoff as well as the payoff of another participant from group B you are matched with. {% endblocktrans %}

{% elif player.id_in_group == 2 %}

{% blocktrans trimmed %} You have been randomly assigned the role of player B. {% endblocktrans %}

{% blocktrans trimmed with n=num_choices %} In the following, player A will be asked to make {{ n }} binary decisions. At the end of this task, one of these decisions will be randomly chosen, determining both your payoff as well as the payoff of player A you are matched with. {% endblocktrans %}

{% endif %}
{% next_button %} {% endblock %}