{% extends "global/Page.html" %} {% load otree static %} {% block title %} 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%} Red and Rectangle {% elif player.id_in_group == 2%} Red andTriangle {% elif player.id_in_group == 3%} 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.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.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.P_win and player.id_in_group == 2 %} win the prize {% elif player.P_win and player.id_in_group == 4 %} 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 %}