{% extends "global/Page.html" %} {% load otree static %} {% block title %} Payoff Screen CEO {% endblock %} {% block content %}
{% if player.participant.vars.decision3_from_part2 == 1 %}

Part 3 was selected for payment. In Part 3, you were in the role of the CEO.
You decided to force the supervisor to set the minimum transfer of 5 points.
The employee transferred: {{ employee_decision13 }} points
You therefore receive {{ multiplied_13 }} points, converted to {{ converted_chf }} CHF according to the exchange rate 1 point=0.1 CHF, plus {{ C.PARTICIPATION_FEE }} CHF for your participation.
You total payoff is therefore {{ player.final_payoff_display}} CHF

{% endif %} {% if player.participant.vars.decision3_from_part2 == 2 and supervisor_decision == 2 %}

Part 3 was selected for payment. In Part 3, you were in the role of the CEO.
You decided to leave the supervisor free in her/his decision.
The supervisor decided to set the minimum transfer of 5 points.
The employee transferred: {{ employee_decision12 }} points
You therefore receive {{ multiplied_12 }} points, converted to {{ converted_chf }} CHF according to the exchange rate 1 point=0.1 CHF, plus {{ C.PARTICIPATION_FEE }} CHF for your participation.
You total payoff is therefore {{ player.final_payoff_display}} CHF

{% endif %} {% if player.participant.vars.decision3_from_part2 == 2 and supervisor_decision == 1 %}

Part 3 was selected for payment. In Part 3, you were in the role of the CEO.
You decided to leave the supervisor free in her/his decision.
The supervisor decided to leave the employees decision about her/his transfer completely free.
The employee transferred: {{ employee_decision11 }} points
You therefore receive {{ multiplied_11 }} points, converted to {{ converted_chf }} CHF according to the exchange rate 1 point=0.1 CHF, plus {{ C.PARTICIPATION_FEE }} CHF for your participation.
You total payoff is therefore {{ player.final_payoff_display}} CHF

{% endif %}

{% endblock %}