{% extends "global/Page.html" %} {% load otree static %} {% block title %}

{% if num_round == 0 %} Practice Round {% else %} Round {{num_round }} of {{ num_of_round }} {% endif %}

Results {% endblock %} {% block content %}

The tokens purchased for group Red are {{player.token_U_total}}, the winning prob is therefore {{player.prob_U}}

The tokens purchased for group Blue are {{player.token_R_total}}, the winning prob is therefore {{player.prob_R}}

The tokens purchased for group Rectangle are {{player.token_W_total}}, the winning prob is therefore {{player.prob_W}}

The tokens purchased for group Triangle are {{player.token_P_total}}, the winning prob is therefore {{player.prob_P}}

The winning group is {% if player.U_win %} Red {% elif player.R_win %} Blue {% elif player.W_win %} Rectangle {% elif player.P_win %} Triangle {% else %} None {% endif %}

You belong to group {% if player.id_in_group == 1 or player.id_in_group == 5 or player.id_in_group == 9%} Red and Rectangle {% elif player.id_in_group == 2 or player.id_in_group == 6 or player.id_in_group == 10 %} Red andTriangle {% elif player.id_in_group == 3 or player.id_in_group == 7 or player.id_in_group == 11 %} Blue and Rectangle {% else %} Blue and Triangle {% endif %}

You {% if player.U_win and player.id_in_group == 1 %} win the prize {% elif player.U_win and player.id_in_group == 2 %} win the prize {% elif player.U_win and player.id_in_group == 5 %} win the prize {% elif player.U_win and player.id_in_group == 6 %} win the prize {% elif player.U_win and player.id_in_group == 9 %} win the prize {% elif player.U_win and player.id_in_group == 10 %} win the prize {% elif player.R_win and player.id_in_group == 3 %} win the prize {% elif player.R_win and player.id_in_group == 4 %} win the prize {% elif player.R_win and player.id_in_group == 7 %} win the prize {% elif player.R_win and player.id_in_group == 8 %} win the prize {% elif player.R_win and player.id_in_group == 11 %} win the prize {% elif player.R_win and player.id_in_group == 12 %} win the prize {% elif player.W_win and player.id_in_group == 1 %} win the prize {% elif player.W_win and player.id_in_group == 3 %} win the prize {% elif player.W_win and player.id_in_group == 5 %} win the prize {% elif player.W_win and player.id_in_group == 7 %} win the prize {% elif player.W_win and player.id_in_group == 9 %} win the prize {% elif player.W_win and player.id_in_group == 11 %} win the prize {% elif player.P_win and player.id_in_group == 2 %} win the prize {% elif player.P_win and player.id_in_group == 4 %} win the prize {% elif player.P_win and player.id_in_group == 6 %} win the prize {% elif player.P_win and player.id_in_group == 8 %} win the prize {% elif player.P_win and player.id_in_group == 10 %} win the prize {% elif player.P_win and player.id_in_group == 12 %} win the prize {% else %} not win the prize {% endif %}

The number of tokens you purchased in this round are {{player.tokens}}, thus the cost you purchased for tokens is {{player.cost}}.

Your payoffs in this round are {{player.round_earning}}.

{% next_button %} {% endblock %}