{% extends "global/Page.html" %} {% block title %}Results{% endblock %} {% block content %}

{% if player.round_number <= 2 %} Ready for your results? {% if group.game_outcome == 1 %}

Congrats! You were able to cooperate with each other!

{% if player.id_in_group == 1 %}

Your payoff is 10.

Player 2's payoff is 10.

{% else %}

Your payoff is 10

Player 1's payoff is 10.

{% endif %} {% elif group.game_outcome == 2 %}

Oh no, someone did not cooperate.

{% if player.id_in_group == 1 %}

Your payoff is {{ player.payoff }}

Player 2's payoff is {{ player.other_payoff }}

{% else %}

Your payoff is {{ player.payoff }}

Player 1's payoff is {{ player.other_payoff }}

{% endif %} {% else %}

Neither of you cooperated...LOL. How predictable

{% if player.id_in_group == 1 %}

Your payoff is 5.

Player 2's payoff is 5.

{% else %}

Your payoff is 5.

Player 1's payoff is 5.

{% endif %} {% endif %} {% elif player.round_number == 3%}

Ready for your results from the Cooperation Game?

{% if group.game_outcome == 1 %}

Congrats! You were able to cooperate with each other!

{% if player.id_in_group == 1 %}

Your payoff is 7.

Player 2's payoff is 7.

{% else %}

Your payoff is 7.

Player 1's payoff is 7.

{% endif %} {% elif group.game_outcome == 2 %}

What a shame! You can't read each others minds!

{% if player.id_in_group == 1 %}

Your payoff is 0.

Player 2's payoff is 0.

{% else %}

Your payoff is 0.

Player 1's payoff is 0.

{% endif %} {% endif %} {% elif player.round_number == 4 %}

Ready for your results from the Cooperation Game?

{% if group.game_outcome == 1 %}

Congrats! You were able to cooperate with each other!

{% if player.id_in_group == 1 %}

Your payoff is 7.

Player 2's payoff is 7.

{% else %}

Your payoff is 7.

Player 1's payoff is 7.

{% endif %} {% elif group.game_outcome == 2 %}

What a shame! You can't read each others minds!

{% if player.id_in_group == 1 %}

Your payoff is 0.

Player 2's payoff is 0.

{% else %}

Your payoff is 0.

Player 1's payoff is 0.

{% endif %} {% endif %} {% else %}

Ready for your results from the Stag-Hunt Game?

{% if group.game_outcome == 1 %}

Congrats! You were able to cooperate with each other and achieve the pareto optimal solution!

{% if player.id_in_group == 1 %}

Your payoff is 10.

Player 2's payoff is 10.

{% else %}

Your payoff is 10.

Player 1's payoff is 10.

{% endif %} {% elif group.game_outcome == 2 %}

Oh no! It looks like someone doesn't trust the other player.

{% if player.id_in_group == 1 %}

Your payoff is {{ player.payoff }}

Player 2's payoff is {{ player.other_payoff }}

{% else %}

Your payoff is {{ player.payoff }}

Player 1's payoff is {{ player.other_payoff }}

{% endif %} {% else %}

Oh no! It looks like no one trusts each other.

{% if player.id_in_group == 1 %}

Your payoff is 5.

Player 2's payoff is 5.

{% else %}

Your payoff is 5.

Player 1's payoff is 5.

{% endif %} {% endif %} {% endif %}

{% next_button %} {% endblock %}