{% extends "global/Page.html" %} {% load otree %} {% block title %} Round {{ subsession.round_number }} of {{ Constants.num_rounds }} Your Choice {% endblock %} {% block content %}

Your role for the remainder of the game is the roll of distributor.
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 kept an amount {{group.kept_amount}}.
This leaves you {{remainder_allocation}} to distribute to the senders in your group. How much would you like to send to Sender 1

{% formfield group.send_back_amount1 label=prompt %}

How much would you like to send to sender 2

{% formfield group.send_back_amount2 label=prompt %}

How much would you like to send to sender 3

{% formfield group.send_back_amount3 label=prompt %}

{% next_button %}

{% endblock %}