{% extends "global/Base.html" %} {% load staticfiles otree_tags %} {% block title %} Final results
Date: April 19th, 2018 {% endblock %} {% block content %} Complete round history {% for p in player_in_previous_rounds %} {% for q in opponent_in_previous_rounds %} {% if p.round_number == q.round_number %} {% else %} {% endif %} {% endfor %} {% endfor %}
Round Your decision Opponent's decision Your payoff Opponent's payoff
{{ p.round_number }} {{p.prey_hunted}} {{q.prey_hunted}} {{p.payoff}} {{q.payoff}}

The paying round was {{ paying_round }}.
{% for p in player_in_previous_rounds %} {% if p.round_number == paying_round %} Your payoff in this round was {{p.payoff}}
{% endif %} {% endfor %} {% for p in opponent_in_previous_rounds %} {% if p.round_number == paying_round %} Your opponent's payoff in this round was {{p.payoff}}
{% endif %} {% endfor %} {% if player.role == 'Player 1' %} {% if paying_round < 4 %} {% for p in player_in_previous_rounds %} {% for q in opponent_in_previous_rounds %} {% if p.round_number == paying_round and q.round_number == paying_round %} {% if p.prey_hunted == 'A' and q.prey_hunted == 'A' %} Your final payoff, including the show-up fee, is then $11
Your opponent's final payoff, including the show-up fee, is then $11 {% else %} {% if p.prey_hunted == 'A' and q.prey_hunted == 'B' %} Your final payoff, including the show-up fee, is then $7
Your opponent's final payoff, including the show-up fee, is then $9 {% else %} {% if p.prey_hunted == 'B' and q.prey_hunted == 'A'%} Your final payoff, including the show-up fee, is then $8
Your opponent's final payoff, including the show-up fee, is then $7 {% else %} Your final payoff, including the show-up fee, is then $8
Your opponent's final payoff, including the show-up fee, is then $9 {% endif %}{% endif %}{% endif %}{% endif %}{% endfor %}{% endfor %} {% else %} {% for p in player_in_previous_rounds %} {% for q in opponent_in_previous_rounds %} {% if p.round_number == paying_round and q.round_number == paying_round %} {% if p.prey_hunted == 'A' and q.prey_hunted == 'A' %} Your final payoff, including the show-up fee, is then $11
Your opponent's final payoff, including the show-up fee, is then $11 {% else %} {% if p.prey_hunted == 'A' and q.prey_hunted == 'B' %} Your final payoff, including the show-up fee, is then $7
Your opponent's final payoff, including the show-up fee, is then $10 {% else %} {% if p.prey_hunted == 'B' and q.prey_hunted == 'A'%} Your final payoff, including the show-up fee, is then $8
Your opponent's final payoff, including the show-up fee, is then $7 {% else %} Your final payoff, including the show-up fee, is then $8
Your opponent's final payoff, including the show-up fee, is then $10 {% endif %}{% endif %}{% endif %}{% endif %}{% endfor %}{% endfor %} {% endif %} {% else %} {% if paying_round < 4 %} {% for p in player_in_previous_rounds %} {% for q in opponent_in_previous_rounds %} {% if p.round_number == paying_round and q.round_number == paying_round %} {% if p.prey_hunted == 'A' and q.prey_hunted == 'A' %} Your final payoff, including the show-up fee, is then $11
Your opponent's final payoff, including the show-up fee, is then $11 {% else %} {% if p.prey_hunted == 'A' and q.prey_hunted == 'B' %} Your final payoff, including the show-up fee, is then $7
Your opponent's final payoff, including the show-up fee, is then $8 {% else %} {% if p.prey_hunted == 'B' and q.prey_hunted == 'A'%} Your final payoff, including the show-up fee, is then $9
Your opponent's final payoff, including the show-up fee, is then $7 {% else %} Your final payoff, including the show-up fee, is then $9
Your opponent's final payoff, including the show-up fee, is then $8 {% endif %}{% endif %}{% endif %}{% endif %}{% endfor %}{% endfor %} {% else %} {% for p in player_in_previous_rounds %} {% for q in opponent_in_previous_rounds %} {% if p.round_number == paying_round and q.round_number == paying_round %} {% if p.prey_hunted == 'A' and q.prey_hunted == 'A' %} Your final payoff, including the show-up fee, is then $11
Your opponent's final payoff, including the show-up fee, is then $11 {% else %} {% if p.prey_hunted == 'A' and q.prey_hunted == 'B' %} Your final payoff, including the show-up fee, is then $7
Your opponent's final payoff, including the show-up fee, is then $8 {% else %} {% if p.prey_hunted == 'B' and q.prey_hunted == 'A'%} Your final payoff, including the show-up fee, is then $10
Your opponent's final payoff, including the show-up fee, is then $7 {% else %} Your final payoff, including the show-up fee, is then $10
Your opponent's final payoff, including the show-up fee, is then $8 {% endif %}{% endif %}{% endif %}{% endif %}{% endfor %}{% endfor %} {% endif %} {% endif %}
Thank you for participating.

{% endblock %}