{% extends "global/Page.html" %} {% load otree static %} {% block title %} Page title {% endblock %} {% block content %} {% if player.id_in_group == 1 && group.receiver_response == 0 %}
You decided to offer {{group.split_amount}} to the other player.
The other player accepted the offer.
Hence you payoff is {{payoff1}}
{% endif %} {% if player.id_in_group == 1 && group.receiver_response == 1 %}You decided to offer {{group.split_amount}} to the other player.
The other player rejected the offer.
Hence you payoff is {{payoff1}}
{% endif %} {% if player.id_in_group == 2 && group.receiver_response == 0 %}Participant 1 decided to offer {{group.split_amount}}.
You accepted the offer.
Hence you payoff is {{payoff2}}
{% endif %} {% if player.id_in_group == 2 && group.receiver_response == 1 %}Participant 1 decided to offer {{group.split_amount}}.
You rejected the offer.
Hence your payoff is {{payoff2}}.
{% endif %}Proposer fairness total {{totalfair_p}}%
Receiver fairness total {{totalfair_r}}%
{% next_button %} {% endblock %}