{% extends "global/Page.html" %}
{% load otree %}
{% block title %}
Distributor Self Allocation
{% endblock %}
{% block content %}
The senders in your group sent you the following amounts:
{% 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 %}
{% next_button %}
{% endblock %}