{% extends "global/Page.html" %}
{% load otree static %}
{% block styles %}
{% endblock %}
{% block title %}
Decision Situation {{ player.round_number }} of {{ Constants.num_rounds }}
{% endblock %}
{% block content %}
Your matching partner has chosen:
{% endif %}
{% if player.reciprocity == "Positive" and player.colors_reversed == 0 and player.option == "B" %}
{% endif %}
{% if player.reciprocity == "Positive" and player.colors_reversed == 1 and player.option == "A" %}
{% endif %}
{% if player.reciprocity == "Positive" and player.colors_reversed == 1 and player.option == "B" %}
{% endif %}
{% if player.reciprocity == "Negative" and player.colors_reversed == 0 and player.option == "A" %}
{% endif %}
{% if player.reciprocity == "Negative" and player.colors_reversed == 0 and player.option == "B" %}
{% endif %}
{% if player.reciprocity == "Negative" and player.colors_reversed == 1 and player.option == "A" %}
{% endif %}
{% if player.reciprocity == "Negative" and player.colors_reversed == 1 and player.option == "B" %}
{% endif %}
| You | Other | |
|---|---|---|
| Distribution X | {% if player.options_reversed == 0 %} {{ player.x_you }} {% endif %} {% if player.options_reversed == 1 %} {{ player.y_you }} {% endif %} | {% if player.options_reversed == 0 %} {{ player.x_other }} {% endif %} {% if player.options_reversed == 1 %} {{ player.y_other }} {% endif %} |
| Distribution Y | {% if player.options_reversed == 0 %} {{ player.y_you }} {% endif %} {% if player.options_reversed == 1 %} {{ player.x_you }} {% endif %} | {% if player.options_reversed == 0 %} {{ player.y_other }} {% endif %} {% if player.options_reversed == 1 %} {{ player.x_other }} {% endif %} |
Which distribution do you choose?
Select the corresponding button and press "Next".