{% extends "global/Page.html" %} {% block title %}Results{% endblock %} {% block content %}
Your randomly assigned name is {{ player.participant.label}}.
{% if me_timed_out == 'd' %}You timed out without making any decisions.
{% if opponent1_timed_out == 'b' or opponent1_timed_out == 'd' %}{{ opponent1_label }} timed out.
{% else %}{{ opponent1_label }} chose to {{ opponent1_decision }}.
{% endif %} {% if opponent2_timed_out == 'b' or opponent1_timed_out == 'd' %}{{ opponent2_label }} timed out.
{% else %}{{ opponent2_label }} chose to {{ opponent2_decision }}.
{% endif %} {% elif me_timed_out == 'b' %}You timed out, but made one decision.
{% if opponent2_timed_out == 'b' or opponent1_timed_out == 'd' %}{{ opponent2_label }} timed out.
{% else %}{{ opponent2_label }} chose to {{ opponent2_decision }}.
{% endif %}{% if same_choice1 %} Both you and {{ opponent1_label }} chose to {{ my_decision1 }} ({{payoff1}} earned) {% else %} You chose {{ my_decision1 }} and {{ opponent1_label }} chose {{ opponent1_decision }} ({{payoff1}} earned) {% endif %}
{% elif me_timed_out == 'c' %}You timed out, but made one decision.
{% if opponent1_timed_out == 'b' or opponent1_timed_out == 'd' %}{{ opponent1_label }} timed out.
{% else %}{{ opponent1_label }} chose to {{ opponent1_decision }}.
{% endif %}{% if same_choice2 %} Both you and {{ opponent2_label }} chose to {{ my_decision2 }} (You earned {{payoff2}}) {% else %} You chose {{ my_decision2 }} and {{ opponent2_label }} chose {{ opponent2_decision }} (You earned {{payoff2}}) {% endif %}
{% else %}{% if opponent1_timed_out == 'b' or opponent1_timed_out == 'd'%} {{ opponent1_label }} timed out (You earned {{payoff1}}) {% elif same_choice1 %} Both you and {{ opponent1_label }} chose to {{ my_decision1 }} (You earned {{payoff1}}) {% else %} You chose {{ my_decision1 }} and {{ opponent1_label }} chose {{ opponent1_decision }} (You earned {{payoff1}}) {% endif %}
{% if opponent2_timed_out == 'c' or opponent2_timed_out == 'd' %} {{ opponent2_label }} timed out (You earned {{payoff2}}) {% elif same_choice2 %} Both you and {{ opponent2_label }} chose to {{ my_decision2 }} (You earned {{payoff2}}) {% else %} You chose {{ my_decision2 }} and {{ opponent2_label }} chose {{ opponent2_decision }} (You earned {{payoff2}}) {% endif %}
{% endif %}Your average points earned for this round is {{ player.payoff }}.
You can rate other players on a scale of 0 to 10 according to how much you trust them. You can only rate players who you have already met in one of the games up to the round you are in.
{% if subsession.round_number == 1 %}As this is the first round, everyone starts with a default score of 5. You will be able to see your ratings in the next round.
{% else %}These are your ratings from the previous round.
{% endif %}You have been randomly matched with {{subsession.n_neighbours}} partners, and will remain matched with them for the remaining rounds of the game.
You can share your ratings of other players you have played with.
{% else %} {% endif %}How would you rate those you played with this round?
{{neighbour1}}
{{neighbour2}}
{{neighbour3}}
With both of your pairs, you face the following decision. You can choose from two options: these two options are indicated with X and Y.
The Other Participant | |||
---|---|---|---|
Choose X | Choose Y | ||
You | Choose X | You both gain {{ Constants.both_cooperate_payoff }}. | You gain {{ Constants.betrayed_payoff }}. They gain {{ Constants.betray_payoff }} |
Choose Y | You gain {{ Constants.betray_payoff }}. They gain {{ Constants.betrayed_payoff }} | You both gain {{ Constants.both_defect_payoff }}. |
The amount that you earn in this round does not depend only on your decision, but on the decision of your pair as well.
If your partners run out of time, it is considered as they have chosen Y. Earnings are calculated according to these rules for all players. Possible payments of the game, also detailed earlier, will be displayed on your screen during the game which makes it easier to remember all possible outcomes. The result of the games appears on your screen after decisions have been made. The average of the two games will be your earnings in each round.
Each round is important for your final payment. By using a random number generator we will select 4 rounds. The average of your payoffs in these 4 rounds will be your final payment.
After you are shown the result of the game you will have the opportunity to rate other players on a scale from 0 to 10 according to how much you trust them. In a given round, you can only rate those who you have already met in one of the games up to the round you are in. By default, the neutral value of 5 is set to everyone. In this step others can also evaluate your trustworthiness.
{% if subsession.round_number >= Constants.round_share_start %}From now on you can share your rating with two players, who will be selected randomly. They will remain your communication partners until the end of the experiment.
After all evaluation have been sent, the ratings you received from your communication partners will appear on your screen. At this stage, you have the opportunity again to change the points you allocated previously, including those scores about whom you obtained information.
{% endif %}