{% extends "global/Page.html" %} {% load otree static %} {% block title %} Final Payment {% endblock %} {% block content %} {% if player.selected %}

Round selected to pay {{Constants.round_selected_plus}}

{% if player.id_in_group == 1%}

Your payment for this round is {{player.final_payment}} (where {{player.final_payment}} equals 10 - {{reported_number}}).

{% else %}

PLAYER 1 reported that the secret number in this round was {{player.final_payment}}. Your payment for this portion of this experiment is {{player.final_payment}}.

{% endif %}

Your final payment is {{player.final_payment}}

{% else %}

Round selected to pay {{Constants.round_selected_normal}}

{% if player.id_in_group == 1%}

Your payment for this round is {{player.final_payment}} (where {{player.final_payment}} equals 10 - {{reported_number}}).

{% else %}

PLAYER 1 reported that the secret number in this round was {{reported_number}}. Your payment for this portion of this experiment is {{player.final_payment}}.

{% endif %}

Your final payment is {{player.final_payment}}

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