{% extends 'otree/WaitPage.html' %} {% load otree %} {% block title %}{{ title_text }}{% endblock %} {% block content %}
This is round {{ subsession.treatment_round_number}}/{{ num_treatment_rounds }}
{% if player.expert %}
You were the best informed person. Your message had a {{ Constants.p }}% chance of being correct.
{% else %}
You were not the best informed person. Your message had a {{ player.q}}% chance of being correct.
{% endif %}
Your message said "The prize is in the {% if player.signal == 0 %}green{% else %}purple{% endif %} box"
{% if player.expert %}
You {% if player.vote == 0 %}voted for the green box{% else %}voted for the purple box{% endif %}.
{% else %}
You {% if player.action == 0 %}voted for the green box{% elif player.action == 1 %}voted for the purple box{% elif player.action == 2 %}gave your vote to the best informed person{% else %}chose not to vote{% endif %}.
{% endif %}