{% extends "global/Page.html" %} {% load staticfiles otree %} {% block title %} Results {% endblock %} {% block content %}
{% if player.id_in_group == 1 %} You were given {{ Constants.endowment }}, out of which you offered {{ group.sent }} to the other player. {% if group.decision == "Accept" %} Your offer was accepted. {% else %} Your offer was rejected. {% endif %} {% else %} The other player offered you {{ group.sent }} out of the total {{ Constants.endowment }}. {% if group.decision == "Accept" %} You accepted this offer. {% else %} You rejected this offer. {% endif %} {% endif %}
Your payoff is therefore {{ player.payoff }}.
{% next_button %} {% endblock %}