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

Results

One of your decisions has been selected at random to determine your bonus. In that decision, the two options were:


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

{% if chosen == "A" %}

You chose Option A. Because Option A pays a fixed amount, you will earn {{ number }} points, regardless of the other participant's choice.

{% elif chosen == "B" %}

You chose Option B. Your earnings depend on the choice of another participant who faced the same decision — that is, another participant who also saw Option A worth {{ number }} points. After data collection is complete, we will match you with one such participant: you will earn {{ Constants.upside }} points if that participant also chose Option B, or {{ Constants.downside }} points if that participant chose Option A.

{% else %}

You did not submit a choice in time, so this round earns 0 points.

{% endif %}

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



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