{% 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 %}

Which {% if player.roles_reversed == 0 %} row {% endif %} {% if player.roles_reversed == 1 %} column {% endif %} do you choose?

{% if player.roles_reversed == 0 %}
{{ form.submitted_choice.0.tag }} U
{{ form.submitted_choice.1.tag }} D
{% endif %} {% if player.roles_reversed == 1 %}
{{ form.submitted_choice.0.tag }} L {{ form.submitted_choice.1.tag }} R
{% endif %}

{% endblock %}