{% extends "global/Page.html" %} {% load otree static %} {% block title %} RESULTS {% endblock %} {% block content %}
Your endownment: {{ Constants.endownment }}
Your contribution to the common project was: {{player.contribution}}
Total contribution of you and the other group members: {{group.total_contribution}}
Your share of the common 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 %}
{{ 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 %} {% endblock %}