{% extends "global/Page.html" %} {% load otree static %} {% block title %} Results {% endblock %} {% block content %}
{% if role == 'receiver' %} In the round randomly selected for payoffs, the dictator who was randomly matched with you, decided to send you {{ player.payoff }} {% else %} {% if task == 1 %} {% if variant == 1 %} In the round randomly selected for payoffs, you played the two-person allocation game in which you were randomly matched with two people from your own group. Your payoffs are thus {{ player.payoff }} {% elif variant == 2 %} In the round randomly selected for payoffs, you played the two-person allocation game in which you were randomly matched with one person from your own group and one person from the other group. Your payoffs are thus {{ player.payoff }} {% else %} In the round randomly selected for payoffs, you played the two-person allocation game in which you were randomly matched with two people from the other group. Your payoffs are thus {{ player.payoff }} {% endif %} {% elif task == 2 %} {% if variant == 1 %} In the round randomly selected for payoffs, you played the three-person allocation game in which you were randomly matched with two people from your own group. You chose to send {{ offer_2 }} to your first match, {{ offer_3 }} to your second match, and chose to keep {{ offer_1 }}. Your payoffs are thus {{ player.payoff }} {% elif variant == 2 %} In the round randomly selected for payoffs, you played the three-person allocation game in which you were randomly matched with one person from your own group and one person from the other group. You chose to send {{ offer_2 }} to your match from your group, {{ offer_3 }} to your second match from the other group, and chose to keep {{ offer_1 }}. Your payoffs are thus {{ player.payoff }} {% else %} In the round randomly selected for payoffs, you played the three-person allocation game in which you were randomly matched with two people from the other group. You chose to send {{ offer_2 }} to your first match, {{ offer_3 }} to your second match, and chose to keep {{ offer_1 }}. Your payoffs are thus {{ player.payoff }} {% endif %} {% else %} {% if variant == 1 %} In the round randomly selected for payoffs, you played the random three-person allocation game in which you were randomly matched with two people from your own group. You chose to send {{ offer_2 }} to your first match, {{ offer_3 }} to your second match, and chose to keep {{ offer_1 }}. {% if lottery == 0 %} It was randomly determined that your payoffs are given by {{ offer_1 }} + {{ offer_3 }} = {{ player.payoff }} {% else %} It was randomly determined that your payoffs are given by {{ offer_1 }} + {{ offer_2 }} = {{ player.payoff }} {% endif %} {% elif variant == 2 %} In the round randomly selected for payoffs, you played the random three-person allocation game in which you were randomly matched with one person from your own group and one person from the other group. You chose to send {{ offer_2 }} to your first match, {{ offer_3 }} to your second match, and chose to keep {{ offer_1 }}. {% if lottery == 0 %} It was randomly determined that your payoffs are given by {{ offer_1 }} + {{ offer_3 }} = {{ player.payoff }} {% else %} It was randomly determined that your payoffs are given by {{ offer_1 }} + {{ offer_2 }} = {{ player.payoff }} {% endif %} {% else %} In the round randomly selected for payoffs, you played the random three-person allocation game in which you were randomly matched with two people from your own group. You chose to send {{ offer_2 }} to your first match, {{ offer_3 }} to your second match, and chose to keep {{ offer_1 }}. {% if lottery == 0 %} It was randomly determined that your payoffs are given by {{ offer_1 }} + {{ offer_3 }} = {{ player.payoff }} {% else %} It was randomly determined that your payoffs are given by {{ offer_1 }} + {{ offer_2 }} = {{ player.payoff }} {% endif %} {% endif %} {% endif %} {% endif %}
Please click the button below to continue to your next task.
{% next_button %} {% endblock %}