{% extends "global/Page.html" %} {% load otree %} {% block title %} Results {% endblock %} {% block content %} {% if player.role == 'employee1' %}

You chose to send leader {{ group.sent_amount1 }}. Leader returned {{ group.sent_back_amount1 }}.

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

{% else %} {% if player.role == 'employee2' %}

You sent leader {{group.sent_amount2 }}. The leader returned {{group.sent_back_amount2}}.

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

{% else %} {% if player.role == 'employee3' %}

You sent leader {{group.sent_amount3 }}. The leader returned {{group.sent_back_amount3}}.

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

{% else %}

Employee1 sent you {{ group.sent_amount1 }}, and they were tripled. You returned {{group.sent_back_amount1}}. Employee2 sent you {{ group.sent_amount2 }}, and they were tripled. You returned {{group.sent_back_amount2}}. Employee3 sent you {{ group.sent_amount3 }}, and they were tripled. You returned {{group.sent_back_amount3}}.

Thus you now have: 3*({{group.sent_amount1}}+{{group.sent_amount2}}+{{group.sent_amount3}})-({{ group.sent_back_amount1}} + {{group.sent_back_amount2}} + {{ group.sent_back_amount3 }})={{player.payoff}}

{% endif %} {% endif %} {% endif %}

Therefore, in this trust game, your total payoff is {{player.payoff}}.

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