{% extends "global/Page.html" %} {% load otree %} {% block title %} Your Choice {% endblock %} {% block content %} {% if player.role == 'firm' %}
Round # {{player.round_number}}
{% if player.round_number < 6 %}
This is a trial round.
{%elif player.round_number == 6 %}
Attention! Real game rounds start now.
{%else%} {%endif%}

You are Player A. Make your choice accordingly.

In each cell the number on the left indicates points for YOU and the number on the right indicates points for Player B.

For example, upper right cell indicates {{Constants.ur|c}} for YOU and {{Constants.ru|c}} for Player B.

Player B
LEFT RIGHT
You {{ Constants.ul}}, {{ Constants.lu}} {{ Constants.ur}}, {{ Constants.ru }}
{{ Constants.dl }},{{Constants.ld}} {{ Constants.dr}}, {{ Constants.rd}}
{% else %}
Round # {{player.round_number}}
{% if player.round_number < 6 %}
This is a trial round.
{%elif player.round_number == 6 %}
Attention! Real game rounds start now.
{%else%} {%endif%}

You are Player B. Make your choice accordingly.

In each cell the number on the left indicates points for Player A and the number on the right indicates points for YOU.

For example, upper right cell indicates {{Constants.ur|c}} for Player A and {{Constants.ru|c}} for YOU.

You
Player A UP {{ Constants.ul}}, {{ Constants.lu}} {{ Constants.ur}}, {{ Constants.ru }}
DOWN {{ Constants.dl }},{{Constants.ld}} {{ Constants.dr}}, {{ Constants.rd}}
{% endif %} {{ form.decision.errors }} {% endblock %}