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

You chose to send Player B {{ group.sent_amount }}. Player B returned {{ group.sent_back_amount }}.

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

{% else %}

Player A sent you {{ group.sent_amount }}. They were tripled, so you received {{ tripled_amount }}. Added to your initial endowment, you had {{ p2sum }}. You chose to return {{ group.sent_back_amount }}.

Thus, you now have: ({{ Constants.endowment }})+({{ tripled_amount }})-({{ group.sent_back_amount }})={{ player.payoff }}

{% endif %}

{% next_button %}

{% include Constants.instructions_template %} {% endblock %}