{% extends "global/Page.html" %} {% load otree static %} {% block title %} Results {% endblock %} {% block content %}
Your endowment: {{ player.endowment }}
Your contribution to the common project was: {{ player.contribution }}
Total contribution of you and other group members: {{ group.total_contribution }}
Your share of the common project profit: {{ group.individual_share }}
Your payoff : {{ player.payoff }}
Your aggregated payoff so far: {{ participant.payoff }}
{% next_button %} {% 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 }} And your group average contribution in this round was {{ p.group.average_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 %} {% endblock %}