{% extends "global/Page.html" %} {% block title %}Results of Round {{ player.round_number }}{% endblock %} {% block content %}

Thank you for participating this round! Here are your results!

{% if player.answer == True%} Congratulations you are right! The other player contributed {% for p in player.get_others_in_group %} {{ p.contribution }} {% endfor %}. You have earned $1 for this answer. {% else %} Oh no! You were a little off this round. The other player contributed {% for p in player.get_others_in_group %} {{ p.contribution }} {% endfor %}. You haven't earned any extra money for a correct answer this round. {% endif %}

Your group's results from this round are found in the table below.

{% for p in player.get_others_in_group %} {% endfor %}
You contributed:{{ player.contribution }}
Other participants contributed:
{{ p.contribution }}
Total contribution:{{ group.total_contribution }}

Total earnings from the project:{{ total_earnings }}
Your earnings from the project:{{ group.individual_share }}

Thus in total you earned:{{ player.payoff }}

Below is the history of your payoffs from the past rounds.

History Table

{% for p in player.in_previous_rounds %} {% endfor %}
Round Your endowment Your contribution to the public account You kept in the private account Your payoff
{{ p.round_number }} {{p.endowment}} {{p.contribution }} {{p.private_keep }} {{p.payoff}}

Please click next when you are ready to proceed to the next round.

{% next_button %} {% endblock %}