{% extends "global/Page.html" %} {% load otree static %} {% block styles %} {% endblock %} {% block title %} Decision Situation {{ player.round_number }} of {{ Constants.num_rounds }}: Choice {% endblock %} {% block content %}

Your interaction partner has chosen:

{% if player.reciprocity == "Positive" and player.colors_reversed == 0 and player.option == "A" %} {% 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 %}
L R
U {% if player.roles_reversed == 0 %} {{ player.payoff_b }} {% endif %} {% if player.roles_reversed == 1 %} {{ player.payoff_a }} {% endif %} {% if player.roles_reversed == 0 %} {{ player.payoff_d }} {% endif %} {% if player.roles_reversed == 1 %} {{ player.payoff_e }} {% endif %}
{% if player.roles_reversed == 0 %} {{ player.payoff_a }} {% endif %} {% if player.roles_reversed == 1 %} {{ player.payoff_b }} {% endif %} {% if player.roles_reversed == 0 %} {{ player.payoff_c }} {% endif %} {% if player.roles_reversed == 1 %} {{ player.payoff_f }} {% endif %}
D {% if player.roles_reversed == 0 %} {{ player.payoff_f }} {% endif %} {% if player.roles_reversed == 1 %} {{ player.payoff_c }} {% endif %} {% if player.roles_reversed == 0 %} {{ player.payoff_h }} {% endif %} {% if player.roles_reversed == 1 %} {{ player.payoff_g }} {% endif %}
{% if player.roles_reversed == 0 %} {{ player.payoff_e }} {% endif %} {% if player.roles_reversed == 1 %} {{ player.payoff_d }} {% endif %} {% if player.roles_reversed == 0 %} {{ player.payoff_g }} {% endif %} {% if player.roles_reversed == 1 %} {{ player.payoff_h }} {% endif %}

Which {% if player.roles_reversed == 0 %} row {% endif %} {% if player.roles_reversed == 1 %} column {% endif %} do you choose?
Select the corresponding button and press "Next".

{% if player.roles_reversed == 0 %} {{ form.submitted_choice.0 }}
{{ form.submitted_choice.1 }} {% endif %} {% if player.roles_reversed == 1 %} {{ form.submitted_choice.0 }}            {{ form.submitted_choice.1 }} {% endif %}

{% endblock %} {% block scripts %} {% endblock %}