{% extends 'otree/WaitPage.html' %} {% load otree %} {% block title %}{{ title_text }}{% endblock %} {% block content %} {% if subsession.big_group == False %}
Waiting for the other participants.



{% if group.chosen_correct == True %}Your group found the prize!{% else %}Your group did not find the prize.{% endif %}

Your message said "The prize is in the {% if player.signal == 0 %}green{% else %}purple{% endif %} box," and it had a {% if player.expert %}{{ Constants.p }}%{% else %}{{ player.q}}%{% endif %} chance of being correct.

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 %}.

Your group chose the {% if group.chosen_decision == 0 %}green{% else %}purple{% endif %} box.

The prize was in the {% if group.actual == 0 %}green{% else %}purple{% endif %} box: you won {% if group.chosen_correct == True %}{{ Constants.reward }}{% else %}0 points{% endif %}.



In total, there {% if group.green_votes == 1 %} was 1 vote {% else %} were {{ group.green_votes }} votes {% endif %} for the green box and {% if group.purple_votes == 1 %} 1 vote {% else %} {{ group.purple_votes }} votes {% endif %} for the purple box.

{% if subsession.mva == False %} {% if player.expert %} You {% else %} The best informed person {% endif %} received {% if group.delegations == 1 %} 1 extra vote {% else %} {{ group.delegations }} extra votes {% endif %} and voted for the {% if group.expert_vote == 0 %}green{% else %}purple{% endif %} box. {% else %} {% if player.expert %} You {% else %} The best informed person {% endif %} voted for the {% if group.expert_vote == 0 %}green{% else %}purple{% endif %} box.

{% if group.abstentions == 1 %} 1 person abstained. {% else %} {{ group.abstentions }} people abstained. {% endif %} {% endif %}

The other voters {% if player.expert %} {% else %} {% if player.action == 0 or player.action == 1 %}(including you){% endif %} {% endif %} cast {% if group.green_votes_nonexperts == 1 %} 1 vote {% else %} {{ group.green_votes_nonexperts }} votes {% endif %}for the green box and {% if group.purple_votes_nonexperts == 1 %} 1 vote {% else %} {{ group.purple_votes_nonexperts }} votes {% endif %}for the purple box.

{% else %}
Waiting for the other participants.



{% if subsession.chosen_correct == True %}Your group found the prize!{% else %}Your group did not find the prize.{% endif %}

Your message said "The prize is in the {% if player.signal == 0 %}green{% else %}purple{% endif %} box," and it had a {% if player.expert %}{{ Constants.p }}%{% else %}{{ player.q}}%{% endif %} chance of being correct.

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 a best informed person{% else %}chose not to vote{% endif %}.

Your group chose the {% if subsession.chosen_decision == 0 %}green{% else %}purple{% endif %} box.

The prize was in the {% if subsession.actual == 0 %}green{% else %}purple{% endif %} box: you won {% if subsession.chosen_correct == True %}{{ Constants.reward }}{% else %}0 points{% endif %}.



In total, there {% if subsession.green_votes == 1 %} was 1 vote {% else %} were {{ subsession.green_votes }} votes {% endif %} for the green box and {% if subsession.purple_votes == 1 %} 1 vote {% else %} {{ subsession.purple_votes }} votes {% endif %} for the purple box.

{% if subsession.mva == False %} The best informed people received{% if subsession.delegations == 1 %} 1 extra vote {% else %} {{ subsession.delegations }} extra votes.{% endif %} {{ subsession.green_votes_experts }} voted for the green box and {{ subsession.purple_votes_experts }} voted for the purple box. {% else %} Among the best informed people, {{ subsession.green_votes_experts }} voted for the green box and {{ subsession.purple_votes_experts }} voted for the purple box.

{% if subsession.abstentions == 1 %} 1 person abstained. {% else %} {{ subsession.abstentions }} people abstained. {% endif %} {% endif %}

The other voters {% if player.expert %} {% else %} {% if player.action == 0 or player.action == 1 %}(including you){% endif %} {% endif %} cast {% if subsession.green_votes_nonexperts == 1%} 1 vote {% else %} {{ subsession.green_votes_nonexperts }} votes {% endif %} for the green box and {% if subsession.purple_votes_nonexperts == 1%} 1 vote {% else %} {{ subsession.purple_votes_nonexperts }} votes {% endif %} for the purple box.

{% endif %}


{% endblock %}