{% extends "global/Page.html" %} {% load otree %} {% block title %} Round Results {% endblock %} {% block content %}

You are {{ player.role }}. {% if player.role == 'distributor' %} You received {{total_allocated}} from the senders
Of this allocation you decided to keep {{group.kept_amount}}
Therefore, your total earnings this round are {{ payoff }} {% elif player.role == 'sender 1' %} You started with {{ Constants.endowment }}
You sent {{ allocation_currency }} to the distributor.
This means that {{ sender_kept }} of your initial points remained

The sender decided to keep {{ group.kept_amount}} and based on proportional redistribution you received {{returned_sender}} from the distributor.
You estimated you would be sent {{e_test}} points from the distributor.
{{e_verdict}}


Therefore, your total earnings this round are {{ payoff }}. {% elif player.role == 'sender 2' %} You started with: {{ Constants.endowment }}
You sent {{ allocation_currency }} to the distributor.
This means that {{ sender_kept }} of your initial points remained

The sender decided to keep {{ group.kept_amount}} and based on proportional redistribution you received {{returned_sender}} from the distributor.
You estimated you would be sent {{e_test}} points from the distributor.
{{e_verdict}}


Therefore, your total earnings this round are {{ payoff }}. {% else %} You started with {{ Constants.endowment }}
You sent {{ allocation_currency }} to the distributor.
This means that {{ sender_kept }} of your initial points remained

The sender decided to keep {{ group.kept_amount}} and based on proportional redistribution you received {{returned_sender}} from the distributor.
You estimated you would be sent {{e_test}} points from the distributor.
{{e_verdict}}


Therefore, your total earnings this round are {{ payoff }}. {% endif %}

{% next_button %} {% endblock %}