{% extends "global/Page.html" %} {% load otree %} {% block title %}
Results Summary 
{% endblock %} {% block content %} {% for p,o in player_opponent_in_all_rounds %} {% endfor %}
Round Player and outcome
{{ p.round_number }} You chose to {{ p.decision }} and the other participant chose {{ o.decision }}. Your payoff was {{ p.payoff }}.


Summary for Player 1

   Player 2
 {{player.other_player.strategy_1}}  {{player.other_player.strategy_2}}  {{player.other_player.strategy_3}}
Player 1  {{ player.strategy_1 }}  {{ player.payoff_selfS1_otherS1 }}, {{ player.other_player.payoff_selfS1_otherS1 }} {{ player.payoff_selfS1_otherS2 }}, {{ player.other_player.payoff_selfS2_otherS1 }}  {{ player.payoff_selfS1_otherS3 }}, {{ player.other_player.payoff_selfS3_otherS1 }}
 {{ player.strategy_2 }}  {{ player.payoff_selfS2_otherS1 }}, {{ player.other_player.payoff_selfS1_otherS2 }}  {{ player.payoff_selfS2_otherS2 }}, {{ player.other_player.payoff_selfS2_otherS2 }}  {{ player.payoff_selfS2_otherS3 }}, {{ player.other_player.payoff_selfS3_otherS2 }}



Summary for Player 2

   Player 1
 {{player.other_player.strategy_1}}  {{player.other_player.strategy_2}}
Player 2  {{ player.strategy_1 }}  {{ player.payoff_selfS1_otherS1 }}, {{ player.other_player.payoff_selfS1_otherS1 }} {{ player.payoff_selfS1_otherS2 }}, {{ player.other_player.payoff_selfS2_otherS1 }} 
 {{ player.strategy_2 }}  {{ player.payoff_selfS2_otherS1 }}, {{ player.other_player.payoff_selfS1_otherS2 }}  {{ player.payoff_selfS2_otherS2 }}, {{ player.other_player.payoff_selfS2_otherS2 }}
{{ player.strategy_3 }}  {{ player.payoff_selfS3_otherS1 }}, {{ player.other_player.payoff_selfS1_otherS3 }}  {{ player.payoff_selfS3_otherS2 }}, {{ player.other_player.payoff_selfS2_otherS3 }}
{% endblock %}