{% extends "global/Page.html" %} {% load otree %} {% block title %} Round {{ subsession.round_number }} of {{ Constants.num_rounds }} Your Choice {% endblock %} {% block content %}
You are Participant B.
Below are the listed allocations from the senders:
{% for p in group.get_players %}
{% if 'sender' in p.role %}
{{p.role}} sent you: {{p.sender_allocation}}
{% endif %}
{% endfor %}
You sent {{group.send_back_amount1}} to player 1
You sent {{group.send_back_amount2}} to player 2
Now you have {{allocate_three}}.
How much would you like to send to sender 3
{% next_button %}
{% include Constants.instructions_template %} {% endblock %}