{% extends "global/Page.html" %} {% load staticfiles otree_tags %} {% block title %} ROUND {{ subsession.round_number }} - RESULTS {% endblock %} {% block content %}
You decided to consult a
{% if player.expert_choice == 'BLUE Expert' %}
{{ player.expert_choice }}.
{% endif %}
{% if player.expert_choice == 'RED Expert' %}
{{ player.expert_choice }}.
{% endif %}
This expert reported: "The ball is
{% if player.expert_choice == 'BLUE Expert' %}
{% if player.message_b == 'BLUE' %}
{{ player.message_b }}".
{% endif %}
{% if player.message_b == 'RED' %}
{{ player.message_b }}".
{% endif %}
{% endif %}
{% if player.expert_choice == 'RED Expert' %}
{% if player.message_r == 'BLUE' %}
{{ player.message_r }}".
{% endif %}
{% if player.message_r == 'RED' %}
{{ player.message_r }}".
{% endif %}
{% endif %}
Your guess, given the expert’s report, was:
{% if player.expert_choice == 'BLUE Expert' %}
{% if player.message_b == 'BLUE' %}
{% if player.ball_choice_b == 'BLUE' %}
{{ player.ball_choice_b }}.
{% endif %}
{% if player.ball_choice_b == 'RED' %}
{{ player.ball_choice_b }}.
{% endif %}
{% else %}
{% if player.ball_choice_r == 'BLUE' %}
{{ player.ball_choice_r }}.
{% endif %}
{% if player.ball_choice_r == 'RED' %}
{{ player.ball_choice_r }}.
{% endif %}
{% endif %}
{% endif %}
{% if player.expert_choice == 'RED Expert' %}
{% if player.message_r == 'BLUE' %}
{% if player.ball_choice_b == 'BLUE' %}
{{ player.ball_choice_b }}.
{% endif %}
{% if player.ball_choice_b == 'RED' %}
{{ player.ball_choice_b }}.
{% endif %}
{% else %}
{% if player.ball_choice_r == 'BLUE' %}
{{ player.ball_choice_r }}.
{% endif %}
{% if player.ball_choice_r == 'RED' %}
{{ player.ball_choice_r }}.
{% endif %}
{% endif %}
{% endif %}
The ball randomly drawn by the computer in this round was
{% if player.ball_colour == "BLUE" %}
{{ player.ball_colour }}.
{% else %}
{{ player.ball_colour }}.
{% endif %}
{% if subsession.round_number != Constants.num_rounds %}
Your earnings in this round are {{ player.payoff }}.
When you are ready to start with the next round, please click the button below.
{% else %}
Since the computer has randomly drawn round number {{ paying_round }} for payment, and given
your guess about the colour of the ball in that round, your bonus payment is {{ player.payoff }}.
{% endif %}
{% next_button %}