{% extends "global/Page.html" %} {% load static otree %} {% block title %} Results {% endblock %} {% block content %}
{% if player.role == 'decider' and player.payoff_belief == belief_bonus %}
You were randomly selected to be the {{ player_role }}. You decided to give {{ group_implemented_donation }}, so you kept {{ player_payoff_dictator_game }}.
Furthermore, you received the bonus of {{ belief_bonus }}.
Including your participation fee of {{ participation_fee_in_points }}, your total payoff is therefore {{ player_payoff }}.
You will be paid within a couple of days.
This is the final screen. Thank you very much for participating in this study!
{% elif player.role == 'decider' and player.payoff_belief != belief_bonus %}
You were randomly selected to be the {{ player_role }}. You decided to give {{ group_implemented_donation }}, so you kept {{ player_payoff_dictator_game }}.
Unfortunately, you did not receive the bonus of {{ belief_bonus }}.
Including your participation fee of {{ participation_fee_in_points }}, your total payoff is therefore {{ player_payoff }}.
You will be paid within a couple of days.
This is the final screen. Thank you very much for participating in this study!
{% elif player.role == 'receiver' and player.payoff_belief == belief_bonus %}
You received the bonus of {{ belief_bonus }}.
Furthermore, you were randomly selected to be the {{ player_role }}.
Once the participant with whom you were matched decides how much to give to you,
you will receive an email indicating your final total payment. This might take a couple of hours.
You will then be paid within a couple of days.
This is the final screen. Thank you very much for participating in this study!
{% elif player.role == 'receiver' and player.payoff_belief != belief_bonus %}
Unfortunately, you did not receive the bonus of {{ belief_bonus }}.
Furthermore, you were randomly selected to be the {{ player_role }}.
Once the participant with whom you were matched decides how much to give to you,
you will receive an email indicating your final total payment. This might take a couple of hours.
You will then be paid within a couple of days.
This is the final screen. Thank you very much for participating in this study!
{% endif %}