{% extends "global/Page.html" %}
{% load staticfiles otree %}
{% block styles %}
{# #}
{% endblock %}
{% block content %}
{{ experiment_name }} (Contribution) - This is round {{ round_num }}
| Round |
{% for g in length %}
number |
{% endfor %}
|
| Your Contribution |
{% for p in length %}
{{ player.contribution }} |
{% endfor %}
|
{% for o in player.get_others_in_group %}
| Player {{ o.id_in_group }} |
{% for p in length %}
{{ o.contribution }} |
{% endfor %}
|
{% endfor %}
| Total Contribution |
{% for g in length %}
111 |
{% endfor %}
|
Earnings history including punishment and reward
| Your Earnings |
{% for p in length %}
64 |
{% endfor %}
|
{% for o in player.get_others_in_group %}
| Player {{ o.id_in_group }} |
{% for p in length %}
64 |
{% endfor %}
|
{% endfor %}
| Group Total Earnings |
{% for g in length %}
222 |
{% endfor %}
|
| Your Total Earnings |
{% for p in length %}
41 |
{% endfor %}
|
Manager has Punished/Rewarded
{% for g in group.get_players %}
{% if g.id_in_group == 4 %}
{% if player.id_in_group == 1 %}
| You |
{% else %}
Player 1 |
{% endif %}
{% for p in length %}
1
|
{% endfor %}
|
{% if player.id_in_group == 2 %}
| You |
{% else %}
Player 2 |
{% endif %}
{% for p in length %}
-2
|
{% endfor %}
|
{% if player.id_in_group == 3 %}
| You |
{% else %}
Player 3 |
{% endif %}
{% for p in length %}
3
|
{% endfor %}
|
{% if player.id_in_group == 4 %}
| You |
{% else %}
Player 4 |
{% endif %}
{% for p in length %}
-4
|
{% endfor %}
|
{% endif %}
{% endfor %}
{% endblock %}