{% for everyone in group.get_players %}
{% if everyone.id_in_group == 1 %}
| Player 1: |
| towards Player 2 |
{% for p in everyone.in_all_rounds %}
{{ p.punish_or_reward_other_player_2 }} |
{% endfor %}
| towards Player 3 |
{% for p in everyone.in_all_rounds %}
{{ p.punish_or_reward_other_player_3 }} |
{% endfor %}
| towards Player 4 |
{% for p in everyone.in_all_rounds %}
{{ p.punish_or_reward_other_player_4 }} |
{% endfor %}
{% endif %}
{% if everyone.id_in_group == 2 %}
| Player 2: |
| towards Player 1 |
{% for p in everyone.in_all_rounds %}
{{ p.punish_or_reward_other_player_1 }} |
{% endfor %}
| towards Player 3 |
{% for p in everyone.in_all_rounds %}
{{ p.punish_or_reward_other_player_3 }} |
{% endfor %}
| towards Player 4 |
{% for p in everyone.in_all_rounds %}
{{ p.punish_or_reward_other_player_4 }} |
{% endfor %}
{% endif %}
{% if everyone.id_in_group == 3 %}
| Player 3: |
| towards Player 1 |
{% for p in everyone.in_all_rounds %}
{{ p.punish_or_reward_other_player_1 }} |
{% endfor %}
| towards Player 2 |
{% for p in everyone.in_all_rounds %}
{{ p.punish_or_reward_other_player_2 }} |
{% endfor %}
| towards Player 4 |
{% for p in everyone.in_all_rounds %}
{{ p.punish_or_reward_other_player_4 }} |
{% endfor %}
{% endif %}
{% if everyone.id_in_group == 4 %}
| Player 4: |
| towards Player 1 |
{% for p in everyone.in_all_rounds %}
{{ p.punish_or_reward_other_player_1 }} |
{% endfor %}
| towards Player 2 |
{% for p in everyone.in_all_rounds %}
{{ p.punish_or_reward_other_player_2 }} |
{% endfor %}
| towards Player 3 |
{% for p in everyone.in_all_rounds %}
{{ p.punish_or_reward_other_player_3 }} |
{% endfor %}
{% endif %}
{% endfor %}