{% extends "global/Base.html" %} {% load staticfiles otree_tags %} {% block title %} Results {% endblock %} {% block content %}
{% if player.role == 'A' %} You chose to send participant B {{ group.sent_amount }}. Participant B returned {{ group.sent_back_amount }}.
You were initially endowed with 100 points, chose to send {{ group.sent_amount }}, received {{ group.sent_back_amount }} thus you now have (100 points)-{{ group.sent_amount }}+{{ group.sent_back_amount }}={{ player.payoff }}. {% else %} Participant A sent you {{ group.sent_amount }}. They were tripled so you received {{ tripled_amount }}. You chose to return {{ group.sent_back_amount }}.
You were initially endowed with 0 points, received {{ tripled_amount }}, chose to return {{ group.sent_back_amount }} thus you now have ({{ tripled_amount }})-({{ group.sent_back_amount }})=({{ player.payoff }}) . {% endif %}
{% next_button %}
{% include Constants.instructions_template %} {% endblock %}