{% extends "global/Page.html" %} {% load otree static %} {% block title %} Results {% endblock %} {% block content %} {{ if player.id_in_group == 1 && group.receiver_response == 0 }}

You offered {{ group.split_amount }} for the other player.

The other player accepted the offer.

{{ endif }} {{ if player.id_in_group == 1 && group.receiver_response == 1 }}

You offered {{ group.split_amount }} for the other player.

The other player rejected the offer.

{{ endif }} {{ if player.id_in_group == 2 && group.receiver_response == 0 }}

You were offered {{ group.split_amount }} by the other player.

You accepted the offer.

{{ endif }} {{ if player.id_in_group == 2 && group.receiver_response == 1 }}

You were offered {{ group.split_amount }} by the other player.

You rejected the offer.

{{ endif }}

Hence your payoff is {{ player.payoff }}

{% next_button %} {% endblock %}