{% extends "global/Page.html" %} {% load staticfiles otree_tags %} {% block title %} Game 2 Results {% endblock %} {% block content %} {% if player.role == 'Sender' %}

You sent the Receiver {{ group.sent_amount|c }}. The Receiver returned {{ group.sent_back_amount|c }}.

You initially had {{ Constants.TG_endowment|c }}, sent {{ group.sent_amount|c }}, received {{ group.sent_back_amount|c }} back, and thus in Game 2 you earned:

{{ Constants.TG_endowment|c }}-{{ group.sent_amount|c }}+{{ group.sent_back_amount|c }}={{ player.payoff|c }}.

{% else %}

The Sender sent {{ group.sent_amount|c }} to you. They were tripled so you received {{ tripled_amount|c }}. You returned {{ group.sent_back_amount|c }}.

You received {{ tripled_amount|c }}, returned {{ group.sent_back_amount|c }}, and thus in Game 2 you earned:

({{ tripled_amount|c }})-({{ group.sent_back_amount|c }})={{ player.payoff|c }}.

{% endif %}

Did the other player's decision meet your expectation?

         
{% endblock %}