{% extends "global/Page.html" %}
{% load otree static %}
{% block styles %}
{% endblock %}
{% block title %}
Decision Situation {{ player.round_number }} of {{ Constants.num_rounds }}
{% endblock %}
{% block content %}
| 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".