{% extends "global/Page.html" %} {% load otree %} {% block title %} You and your partner will know your identities at the end of the study. {% endblock %} {% block content %}
You are P2: You and P1 have {{Constants.endowment}} each from an investor to support your individual businesses. You can earn more by partnering with P1 in an investment.

For this investment, P1 has sent you some money which has either being turned to 0 or tripled by the computer with 50-50 chance. P1 also knows about the 50-50 chance. So if you received 0, it is either because P1 sent you 0 or the computer turned whatever P1 sent to zero.

The random amount from the computer today is {{random_amount}}. {% if random_amount == 0 %} So the total money in your account for this round is {{total_random}} which comes from the {{Constants.endowment}} from the investor and the random {{random_amount}} received from the computer.

Since you received 0, you can only send 0 back 0 P1. {% else %}

Therefore, the total money in your account for this round is the {{random_amount}} received and the {{Constants.endowment}} from the investor making it {{total_random}}

You can transfer TK.0, the {{random_amount}} received or any amount in between to P1. Remember you lose whatever you transfer to P1 and it becomes part of P1's money

{% endif %}

{% formfield group.sent_back_amount %}

{% endblock %}