{% extends "global/Page.html" %} {% load otree static %} {% block title %} Result {% endblock %} {% block content %}
{% if player.randomrole == 'Proposer' %}
You are chosen as the proposer by the system.
You chose to offer your partner {{ player.amount_offered }} .
{% if group.offer_accepted %}
Congratulations, your offer has been ACCEPTED.
{% else %}
Unfortunately, your offer has been rejected.
{% endif %}
{% else %}
You are chosen as the responder by the system.
Your partner offered you {{ group.amount_offered }} out of {{ Constants.endowment }}.
{% if group.offer_accepted %}
As a result, you chose to accept it.
{% else %}
As a result, you chose to reject it.
{% endif %}
{% endif %}
Thus, your payoff for this part is: {{ player.payoff }}.
{% next_button %} {% endblock %}