{% extends "global/Page.html" %} {% load otree static %} {% block title %} Results from period {{ player.round_number }}. {% endblock %} {% block content %}
Your endowment: {{ player.endowment }}
Your contribution to the common was: {{ player.contribution }}
The total contribution: {{ group.total_contribution }}.
The average contribution was: {{ group.average_contribution }}
Your payoff is {{ player.payoff }}
Your aggregated payoff so far: {{ participant.payoff }}
{% if player.round_number > 1 %}
In previous rounds:
{% for p in player.in_previous_rounds %}
In round {{ p.round_number }} your contribution was: {{ p.contribution }}
{% endfor %} {% endif %}
Other group members' info:
{% for o in player.get_others_in_group %}
Player {{ o.id_in_group }}: Contribution: {{ o.contribution }}; Payoff: {{ o.payoff }}.
{% endfor %}
{% next_button %}
{% endblock %}