{% extends "global/Page.html" %} {% load otree static %} {% block title %} Round {{ round_number }} {% endblock %} {% block content %}

You have been randomly matched to a new group.

{% if player_class == 1 or player_class == 2 %}

You are a Red type.

  1. Payoff for RED choosing X: {{ high_payoff }} × (number of others who chose X)
  2. Payoff for RED choosing Y: {{ low_payoff }} × (number of others who chose Y)
{% else %}

You are a Blue type.

  1. Payoff for BLUE choosing X: {{ low_payoff }} ×(number of others who chose X)
  2. Payoff for BLUE choosing Y: {{ high_payoff }} × (number of others who chose Y)
{% endif %} {% if announce_treatment %}

The announcement is: {{ announcement }}

{% endif %}

What is your choice?

{% if subsession.round_number > 1 %}

History of previous rounds

{% if announce_treatment %} {% endif %} {% for p in player_in_previous_rounds %} {% if announce_treatment %} {% endif %} {% endfor %}
RoundAnnouncement Your Decision Others who chose X Others who chose Y Your Payoff
{{ p.round_number }}{{ p.subsession.announcement }}{{ p.decision }} {{ p.others_X }} {{ p.others_Y }} {{ p.payoff }}
{% endif %} {% endblock %} {% block app_styles %} {% endblock %}