{% extends "global/Page.html" %} {% load otree %} {% block title %} Results of round {{ subsession.round_number }} of {{ Constants.num_rounds }} {% endblock %} {% block content %}
Round {{ subsession.round_number }} has now concluded.
Your assigned type in this round was {{ player.int_pref }}.
Your reported type in this round was {{ player.exp_pref }}.
Your neighbours' reported types in this round were:
{% if player.id_in_group == 1 %}- Participant number 2 reported {{ exp_pref_2 }}.
- Participant number 3 reported {{ exp_pref_3 }}.
- Participant number 4 reported {{ exp_pref_4 }}.
- Participant number 6 reported {{ exp_pref_6 }}.
{% endif %} {% if player.id_in_group == 2 %}- Participant number 1 reported {{ exp_pref_1 }}.
- Participant number 3 reported {{ exp_pref_3 }}.
- Participant number 4 reported {{ exp_pref_4 }}.
- Participant number 5 reported {{ exp_pref_5 }}.
{% endif %} {% if player.id_in_group == 3 %}- Participant number 1 reported {{ exp_pref_1 }}.
- Participant number 2 reported {{ exp_pref_2 }}.
- Participant number 5 reported {{ exp_pref_5 }}.
{% endif %} {% if player.id_in_group == 4 %}- Participant number 1 reported {{ exp_pref_1 }}.
- Participant number 2 reported {{ exp_pref_2 }}.
- Participant number 6 reported {{ exp_pref_6 }}.
{% endif %} {% if player.id_in_group == 5 %}- Participant number 2 reported {{ exp_pref_2 }}.
- Participant number 3 reported {{ exp_pref_3 }}.
{% endif %} {% if player.id_in_group == 6 %}- Participant number 1 reported {{ exp_pref_1 }}.
- Participant number 4 reported {{ exp_pref_4 }}.
{% endif %}Your earnings for this round are therefore {{ player.payoff }}.
Your total earnings so far are {{ total_payoff }}.
{% if subsession.round_number == Constants.num_rounds %}Please click on the "Next" button below to proceed to the survey which will collect your demographic information.
Once you have completed this survey, your cash payoff (i.e. the amount of money (in US $) you have earned from participating in this experiment) will be revealed to you.
{% endif %} {% next_button %} {% endblock %}