{% extends "global/Page.html" %} {% load otree %} {% block title %} Round Results {% endblock %} {% block content %}
{% if player.role == 'distributor' %}
You are the distributor for this group.
You started with: {{ Constants.endowment }}
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 are a sender for this group.
You started with {{ Constants.endowment }}
You sent {{ sender_allocation }} to the distributor.
This means that {{ sender_kept }} of your initial points remained
The sender decided to keep {{ group.kept_amount}}
The sender decided to return to you {{returned_sender}} this round.
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 are a sender for this group.
You started with: {{ Constants.endowment }}
You sent: {{ sender_allocation }} to the distributor.
This means that {{ sender_kept }} of your initial points remained
The sender decided to keep {{ group.kept_amount}}
The sender decided to return to you {{returned_sender}} this round.
You estimated you would be sent {{e_test}} points from the distributor.
{{e_verdict}}
Therefore, your total earnings this round are {{ payoff }}.
{% else %}
You are a sender for this group.
You started with {{ Constants.endowment }}
You sent {{ sender_allocation }} to the distributor.
This means that {{ sender_kept }} of your initial points remained
The sender decided to keep {{ group.kept_amount}}
The sender decided to return to you {{returned_sender}} this round.
You estimated you would be sent {{e_test}} points from the distributor.
{{e_verdict}}
Therefore, your total earnings this round are {{ payoff }}.
{% endif %}