{% extends "global/Page.html" %} {% load otree %} {% block title %} Attività {{subsession.task2_order}} - Match 3: Risultati Round n. {{subsession.round_number}} {% endblock %} {% block content %}

{% if same_choice %} Entrambi avete scelto: {{ my_decision }}. {% else %} Tu hai scelto {{ my_decision }} e l'altro partecipante ha scelto {{ opponent_decision }}. {% endif %}

Di conseguenza, i tuoi guadagni da questo round ammontano a {{ player.payoff }}.


{% if player.round_number == 1 %} È stato estratto il numero: {{ cont_value_r1 }}. {% if player.last_round == 1 %} Il match termina ora. {% else %} Il match continua per un altro round. {% endif %} {% endif %} {% if player.round_number == 2 %} È stato estratto il numero: {{ cont_value_r2 }}. {% if player.last_round == 1 %} Il match termina ora. {% else %} Il match continua per un altro round. {% endif %} {% endif %} {% if player.round_number == 3 %} È stato estratto il numero: {{ cont_value_r3 }}. {% if player.last_round == 1 %} Il match termina ora. {% else %} Il match continua per un altro round. {% endif %} {% endif %} {% if player.round_number == 4 %} È stato estratto il numero: {{ cont_value_r4 }}. {% if player.last_round == 1 %} Il match termina ora. {% else %} Il match continua per un altro round. {% endif %} {% endif %} {% if player.round_number == 5 %} È stato estratto il numero: {{ cont_value_r5 }}. {% if player.last_round == 1 %} Il match termina ora. {% else %} Il match continua per un altro round. {% endif %} {% endif %} {% if player.round_number == 6 %} È stato estratto il numero: {{ cont_value_r6 }}. {% if player.last_round == 1 %} Il match termina ora. {% else %} Il match continua per un altro round. {% endif %} {% endif %}

{% next_button %} {% endblock %}