{% 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 all supervisors to set the minimum transfer of 5 points.
Employee 1 transferred: {{ ceo_employee_1 | to0}} points
Employee 2 transferred: {{ ceo_employee_2 | to0}} points
Employee 3 transferred: {{ ceo_employee_3 | to0}} points
Employee 4 transferred: {{ ceo_employee_4 | to0}} points
You therefore receive {{ player.ceo_points | to0}} points, converted to {{ player.converted_chf | to2}} 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 | to2}} CHF

{% else %}

Part 3 was selected for payment. In Part 3, you were in the role of the CEO.
You decided to leave the supervisors free in their decision.
Employee 1 transferred: {{ ceo_employee_1 | to0}} points
Employee 2 transferred: {{ ceo_employee_2 | to0}} points
Employee 3 transferred: {{ ceo_employee_3 | to0}} points
Employee 4 transferred: {{ ceo_employee_4 | to0}} points
You therefore receive {{ player.ceo_points | to0}} points, converted to {{ player.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 | to2}} CHF

{% endif %}

{% endblock %}