|
Player {{ o.id_in_group }}
{% if o.role == 'Manager' %}
(Manager)
{% endif %}
|
{% if show_all_manager_data == False %}
{% if player.role == 'Manager' %}
{% for p in o.in_all_rounds %}
{% if p.contribution %}
{{ p.contribution }}
{% endif %}
|
{% if p.fairlyDistributedAmount %}
{{ p.fairlyDistributedAmount }}
{% endif %}
|
{% if p.earnings != none %}
{{ p.earnings }}
{% endif %}
|
{% endfor %}
{% else %}
{% for p in o.in_previous_rounds %}
{% if p.contribution %}
{{ p.contribution }}
{% endif %}
|
{% if p.fairlyDistributedAmount != none %}
{{ p.fairlyDistributedAmount }}
{% endif %}
|
{% if p.earnings != none %}
{{ p.earnings }}
{% endif %}
|
{% endfor %}
{% endif %}
{% elif show_all_manager_data %}
{% if o.role == 'Manager' %}
{% for p in o.in_all_rounds %}
{% if p.contribution %}
{{ p.contribution }}
{% endif %}
|
{% if p.fairlyDistributedAmount != none %}
{{ p.fairlyDistributedAmount }}
{% endif %}
|
{% if p.earnings != none %}
{{ p.earnings }}
{% endif %}
|
{% endfor %}
{% else %}
{% for p in o.in_previous_rounds %}
{% if p.contribution %}
{{ p.contribution }}
{% endif %}
|
{% if p.fairlyDistributedAmount != none %}
{{ p.fairlyDistributedAmount }}
{% endif %}
|
{% if p.earnings != none %}
{{ p.earnings }}
{% endif %}
|
{% endfor %}
{% endif %}
{% endif %}
{% endfor %}