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

You are in round {{ player.round_number }}.
Your endowment in this round is {{ player.endowment }}.
Your contribution to this round is {{ player.contribution }}.
Your payoff in this round is {{ player.payoff }}, payoff refers to your earnings in this round.
Your total earnings in all the round is {{ participant.payoff }}, total earnings refers to the sum of the payoff in all rounds so far.

{% if player.round_number != 0 %}
Contribution and Payoff History Table

{% for p in player.in_all_rounds %} {% endfor %}
Round Endowment Your Contribution Payoff
{{p.round_number}} {{ p.endowment }} {{ p.contribution }} {{p.payoff}}

{% endif %} {% next_button %} {% include Constants.instructions_template %} {% endblock %}