{% extends "global/Page.html" %} {% load otree %} {% block title %} Trust Game: Your Choice {% endblock %} {% block content %} {% for p in player.get_others_in_group %} {% endfor %}
You are the leader.
{% if p.role == 'Employee1' %} Employee1 sent you {{ p.sent_amount }} and it has been tripled

{% formfield group.sent_back_amount1 label="How much do you want to send back to her/him?" %}

{% else %}{% if p.role == 'Employee2' %}Employee2 sent you {{ p.sent_amount }} and it has been tripled

{% formfield group.sent_back_amount2 label="How much do you want to send back to her/him?" %}

{% else %}{% if p.role == 'Employee3' %}Employee3 sent you {{ p.sent_amount }} and it has been tripled

{% formfield group.sent_back_amount3 label="How much do you want to send back to her/him?" %}

{% endif %}{% endif %}{% endif %}
{% next_button %} {% endblock %}