{% 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 the Firm. You start with {{Budget|c}}. Make your choice accordingly from options below.

{% include Constants.instructions_template %}
{% 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 the Agency. You start with {{Budget|c}}. Make your choice accordingly from options below.

{% include Constants.instructions_template %}
{% endif %} {{ form.decision.errors }} {% endblock %}