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

Results

Round randomly selected for payment: {{ paid_round }}

The decision in Round {{ paid_round }} was:


{% if number_on_left %}
Option A
Option B
{{ number }}
{{Constants.downside}} if opponent chooses A
{{Constants.upside}} if opponent chooses B
{% else %}
Option B
Option A
{{Constants.downside}} if opponent chooses A
{{Constants.upside}} if opponent chooses B
{{ number }}
{% endif %}

{% if number_on_left %} {% if decision == "Left" %}

Your choice in Round {{ paid_round }}: Option A.

You earned {{ number }} points.

{% elif decision == "Right" and number < 55 %}

Your choice in Round {{ paid_round }}: Option B.

Your opponent's choice in Round {{ paid_round }}: Option B.

You earned {{ Constants.upside }} points.

{% else %}

Your choice in Round {{ paid_round }}: Option B.

Your opponent's choice in Round {{ paid_round }}: Option A.

You earned {{ Constants.downside }} points.

{% endif %}

Your earnings in points will be converted to GBP at the rate 20 points = 1 GBP.

{% else %} {% if decision == "Right" %}

Your choice in Round {{ paid_round }}: Option A.

You earned {{ number }} points.

{% elif decision == "Left" and number < 55 %}

Your choice in Round {{ paid_round }}: Option B.

Your opponent's choice in Round {{ paid_round }}: Option B.

You earned {{ Constants.upside }} points.

{% else %}

Your choice in Round {{ paid_round }}: Option B.

Your opponent's choice in Round {{ paid_round }}: Option A.

You earned {{ Constants.downside }} points.

{% endif %}

Your earnings in points will be converted to GBP at the rate 20 points = 1 GBP.

{% endif %}

CLICK HERE to confirm you completed the study and be paid!
{% endblock %}