{% extends "global/Page.html" %}
{% load staticfiles otree %}
{% 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}}.
{% else %}
The Sender sent you {{ group.sent_amount }}.
You returned {{group.sent_back_amount}}.
{% endif %}
Therefore, your total payoff is {{ player.payoff}}.
{% next_button %}
{% endblock %}