{% extends "global/Page.html" %} {% load otree static %} {% block title %} Results {% endblock %} {% block content %}
Your endowment: {{ player.endowment }}
Player contribution: {{ player.contribution }}
Average contribution: {{ group.average_contribution }}
Player payoff: {{ player.payoff }}
Your aggregated payoff was: {{ participant.payoff }}
{% next_button %} {% if player.round_number > 1 %}
In the previous round:
{% for p in player.in_previous_rounds %}
In round {{ p.round_number }} your contribution was: {{ p.contribution }}
{% endfor %} {% endif %}
Other group member's information
{% for o in player.get_others_in_group %}
Player {{ o.id_in_group }}: Contribution: {{ o.contribution }}: Payoff: {{ o.payoff }}
{% endfor %} {% endblock %}