{% 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 | ||
|---|---|---|---|
| {{ form.submitted_choice.0.tag }} | 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 %} |
| {{ form.submitted_choice.1.tag }} | 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 %} |
Choose a distribution by selecting the appropriate radio button.