{% 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 %}
Remember that everything you don't keep will get redistributed to the senders proportionally.
{% next_button %}
{% endblock %}