{% extends "global/Page.html" %} {% load otree static %} {% block title %} Page title {% endblock %} {% block content %}
Your endowment is: {{ player.endowment }}
Your contribution is: {{player.contribution}}
Total contribution is: {{group.total_contribution}}
Your share is: {{group.individual_share}}
Your payoff is: {{player.payoff}}
Your total payoff is: {{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}}
{% endfor %} {% endif %}
Other group member info
{% for o in player.get_others_in_group %}
Player {{o.id_in_group}}: Contribution {{o.contribution}}; Payoff: {{o.payoff}}
{% endfor %} {% endblock %}