{% extends "global/Page.html" %} {% load otree static %} {% block title %} {% endblock %} {% block content %} Trial Number {{ subsession.round_number }}
{% if subsession.round_number < 4%} Practice Trial {{ subsession.round_number }} of 3 {% else %} {% endif %}

Results

You {% if player.is_winner %} Won {% else %} Lost {% endif %}
Your bid {{ player.investment }} points
Your opponent's bid {{ other_player_investment }} points
You Predicted {{ player.Perceived_investment }} points
Prediction Payoff {{ player.guesspayoff1 }}
Your chance of winning {% if player.id_in_group == 1 %} {{group.chance_A}} {% else %} {{group.chance_B}} {% endif %} percent
Bid task Payoff {{ player.payoff1 }}
Total Round 1 Payoff {{ player.Totalpayoff1 }}

{% if player.id_in_group == 1 %} {% if player.is_winner %} You won in Round 1.
The computer will again put 3 'A' balls in the bid bag for every point you bid in Round 2 of this trial. {% else %} You lost in Round 1.
The computer will no longer put 3 'A' balls in the bid bag for every point you bid in Round 2.
Both yours and B's bid will be converted into 1 ball for 1 point of bid.{% endif %} {% else %} {% if player.is_winner %} You won in Round 1.
The computer will no longer put 3 'A' balls in the bid bag for every point that A bids in Round 2 of this trial.
Both yours and A's bid will be converted into 1 ball for 1 point of bid. {% else %} You lost in period 1.
The computer will again put 3 'A' balls in the bid bag for every point you bid in Round 2.
Your bid will be converted into 1 'B' ball for 1 point of your bid in Round 2. {% endif %} {% endif %}


{% next_button %} {% endblock %}