{% extends "global/Page.html" %} {% load otree %} {% block title %} The Decision Task: Report Your Type {% endblock %} {% block content %}

This is round number {{ subsession.round_number }} of {{Constants.num_rounds }}.

You are assigned to node {{ player.id_in_group }}.

{% if player.id_in_group == 1 %}

Your neighbours are participants at nodes number 2, 3, 4 and 6. The following picture depicts your neighbourhood:

{% endif %} {% if player.id_in_group == 2 %}

Your neighbours are participants at nodes number 1, 3, 4 and 5. The following picture depicts your neighbourhood:

{% endif %} {% if player.id_in_group == 3 %}

Your neighbours are participants at nodes number 1, 2 and 5. The following picture depicts your neighbourhood:

{% endif %} {% if player.id_in_group == 4 %}

Your neighbours are participants at nodes number 1, 2 and 6. The following picture depicts your neighbourhood:

{% endif %} {% if player.id_in_group == 5 %}

Your neighbours are participants at nodes number 2 and 3. The following picture depicts your neighbourhood:

{% endif %} {% if player.id_in_group == 6 %}

Your neighbours are participants at nodes number 1 and 4. The following picture depicts your neighbourhood:

{% endif %} {% if player.id_in_group == 1 %}
{% endif %} {% if player.id_in_group == 2 %}
{% endif %} {% if player.id_in_group == 3 %}
{% endif %} {% if player.id_in_group == 4 %}
{% endif %} {% if player.id_in_group == 5 %}
{% endif %} {% if player.id_in_group == 6 %}
{% endif %}

Show the overall network

Your assigned type for this round is {{ player.int_pref }}.

{% formfield player.exp_pref label="Please choose your type to be reported in this round" %}

{% if player.id_in_group == 1 or player.id_in_group == 2%}

Show the table of my possible earnings for this round

{% endif %} {% if player.id_in_group == 3 or player.id_in_group == 4%}

Show the table of my possible earnings for this round

{% endif %} {% if player.id_in_group == 5 or player.id_in_group == 6%}

Show the table of my possible earnings for this round

{% endif %} {% if player.id_in_group == 1 %}
{% for p in player.in_previous_rounds %} {% endfor %}

Round

Your assinged type

Your reported type

Your earnings

Neighbor reports

2, 3, 4, 6

{{ p.round_number }} {{ p.int_pref }} {{ p.exp_pref }} {{ p.payoff }} {{ p.neighbor_reports }}
{% endif %} {% if player.id_in_group == 2 %}
{% for p in player.in_previous_rounds %} {% endfor %}

Round

Your assigned type

Your reported type

Your earnings

Neighbor reports

1, 3, 4, 5

{{ p.round_number }} {{ p.int_pref }} {{ p.exp_pref }} {{ p.payoff }} {{ p.neighbor_reports }}
{% endif %} {% if player.id_in_group == 3 %}
{% for p in player.in_previous_rounds %} {% endfor %}

Round

Your assigned type

Your reported type

Your earnings

Neighbor reports

1, 2, 5

{{ p.round_number }} {{ p.int_pref }} {{ p.exp_pref }} {{ p.payoff }} {{ p.neighbor_reports }}
{% endif %} {% if player.id_in_group == 4 %}
{% for p in player.in_previous_rounds %} {% endfor %}

Round

Your assigned type

Your reported type

Your earnings

Neighbor reports

1, 2, 6

{{ p.round_number }} {{ p.int_pref }} {{ p.exp_pref }} {{ p.payoff }} {{ p.neighbor_reports }}
{% endif %} {% if player.id_in_group == 5 %}
{% for p in player.in_previous_rounds %} {% endfor %}

Round

Your assigned type

Your reported type

Your earnings

Neighbor reports

2, 3

{{ p.round_number }} {{ p.int_pref }} {{ p.exp_pref }} {{ p.payoff }} {{ p.neighbor_reports }}
{% endif %} {% if player.id_in_group == 6 %}
{% for p in player.in_previous_rounds %} {% endfor %}

Round

Your assigned type

Your reported type

Your earnings

Neighbor reports

1, 4

{{ p.round_number }} {{ p.int_pref }} {{ p.exp_pref }} {{ p.payoff }} {{ p.neighbor_reports }}
{% endif %} {% if subsession.round_number > 1 %}

Your total earnings at the end of round {{ prev_rounds }} were {{ total_payoff }}.

{% endif %} {% next_button %} {% endblock %}