{% extends "global/Page.html" %} {% load otree static %} {% block title %} Results of round {{ round_number }} {% endblock %} {% block content %} {% 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 was: {{ announcement }}

{% endif %}

You chose: {{ decision }}

In your group, {{ others_X }} others chose X and {{ others_Y }} others chose Y.

{% if digit_span > 0 %} {% if correct %}

You entered the {{ digit_span }}-digit number correctly.

{% else %}

You entered the {{ digit_span }}-digit number incorrectly.

{% endif%} {% endif %}

Thus, your payoff for this round was: {{ payoff }}

{% next_button %} {% 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 %}