{% 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 contains {{Constants.firm_fully_comply|c}} for YOU and {{Constants.insp_FN|c}} for Player B.

Player B
LEFT CENTER RIGHT
You {{ Constants.firm_fully_comply}}, {{ Constants.insp_FI}} {{ Constants.firm_fully_comply}}, {{ Constants.insp_FL }} {{ Constants.firm_fully_comply}}, {{ Constants.insp_FN }}
50 points, -30 points (10 % prob.)

0 points, 20 points (90 % prob.)
{{ Constants.firm_PL}}, {{ Constants.insp_PL }} {{ Constants.firm_PN}}, {{ Constants.insp_PN }}
{{ Constants.firm_NF}}, {{ Constants.insp_NF}} 60 points, 0 points (50% prob.)

10 points, 50 points (50% prob.)
{{ Constants.firm_NN}}, {{ Constants.insp_NN}}
{% 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 contains {{Constants.firm_fully_comply|c}} for Player A and {{Constants.insp_FN|c}} for YOU.

You
Player A UP {{ Constants.firm_fully_comply}}, {{ Constants.insp_FI}} {{ Constants.firm_fully_comply}}, {{ Constants.insp_FL }} {{ Constants.firm_fully_comply}}, {{ Constants.insp_FN }}
MIDDLE 50 points, -30 points (10 % prob.)

0 points, 20 points (90 % prob.
{{ Constants.firm_PL}}, {{ Constants.insp_PL }} {{ Constants.firm_PN}}, {{ Constants.insp_PN }}
DOWN {{ Constants.firm_NF}}, {{ Constants.insp_NF}} 60 points, 0 points (50% prob.)

10 points, 50 points (50% prob.)
{{ Constants.firm_NN}}, {{ Constants.insp_NN}}
{% endif %} {{ form.decision.errors }} {% endblock %}