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

The number of tokens you bid are {{player.joy_winning_bids}}

The total number of tokens your group bid are: {% if player.id_in_group == 1 or player.id_in_group == 2 or player.id_in_group == 3 or player.id_in_group == 4 or player.id_in_group == 5 or player.id_in_group == 6 %} {{player.total_bid1}} {% else %} {{player.total_bid2}} {% endif %}

The chance for you to win the bid is: {% if player.id_in_group == 1 or player.id_in_group == 2 or player.id_in_group == 3 or player.id_in_group == 4 or player.id_in_group == 5 or player.id_in_group == 6 %} {{player.joy_winning_prob1}} {% else %} {{player.joy_winning_prob2}} {% endif %}

You {% if player.joy_winning_win %} win the bid {% else %} not win the bid {% endif %}

Your payoffs in this part are {{player.joy_winning_earnings}}.

{% next_button %} {% endblock %}