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

You chose to send participant B {{ my_decision_send }}. Participant B returned {{ opponent_decision_sent_back_amount }}.

You were initially endowed with {{ Constants.endowment }}, chose to send {{ my_decision_send }}, received {{ opponent_decision_sent_back_amount }} thus you now have: {{ Constants.endowment }}-{{ my_decision_send }}+{{ opponent_decision_sent_back_amount }}={{ player.payoff }}

{% else %}

Participant A sent you {{ opponent_decision_send }}. They were tripled so you received {{ tripled_amount }}. You chose to return {{ my_decision_sent_back_amount }}.

You received {{ tripled_amount }}, chose to return {{ my_decision_sent_back_amount }} thus you now have: ({{ tripled_amount }})-({{ my_decision_sent_back_amount }})={{ player.payoff }}

. {% endif %}

{% next_button %}

{% endblock %}