{% extends "global/Page.html" %} {% load staticfiles otree_tags %} {% block title %} Results {% endblock %} {% block content %} {% if player.id_in_group == 1 %}
You sent the Receiver {{ group.sent_amount }}. The Receiver returned {{ group.sent_back_amount }}.
You were given ¢30 . You sent {{ group.sent_amount }} to the Receiver. The Receiver received {{ tripled_amount }} and returned {{ group.sent_back_amount }}.
Your payoff in this round is (¢30) - ({{ group.sent_amount }}) + ({{ group.sent_back_amount }}) = ({{ player.payoff }}). Your cumulative payoff is {{ cumulative_payoff }}.
{% else %}The Sender sent you {{ group.sent_amount }}. They were tripled so you received {{ tripled_amount }}. You returned {{ group.sent_back_amount }}.
Your payoff for this round is ({{ tripled_amount }}) - ({{ group.sent_back_amount }}) = ({{ player.payoff }}). Your cumulative payoff is {{ cumulative_payoff }}.
{% endif %}{% next_button %}
{% endblock %}