{% extends "global/Page.html" %} {% load otree %} {% block title %} Distributor Self Allocation {% endblock %} {% block content %}

You started the round with {{ Constants.endowment }}
You received the following points from the senders in this round:
{% for p in group.get_players %} {% if 'sender' in p.role %} {{p.role}} sent you: {{p.sender_allocation}}
{% endif %} {% endfor %}
That means you have a total of {{tripled_amount}} to distribute

{% formfield group.kept_amount label=prompt %}

Note that any points you don't keep will be redistributed to the senders equally.

{% next_button %}

{% endblock %}