{% extends "global/Page.html" %} {% load otree static %} {% block title %} Payoff Screen Supervisor {% endblock %} {% block content %}
{% if ceo_decision == 1 %}

Part 2 was selected for payment. In Part 2, you were in the role of the Supervisor.
The CEO decided to force the supervisor to set the minimum transfer of 5 points.
You had no choice.
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 ceo_decision == 2 and player.participant.vars.decision2_from_part2 == 2 %}

Part 2 was selected for payment. In Part 2, you were in the role of the Supervisor.
The CEO decided to leave the supervisor free in her/his decision.
You 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 ceo_decision == 2 and player.participant.vars.decision2_from_part2 == 1 %}

Part 2 was selected for payment. In Part 2, you were in the role of the Supervisor.
The CEO decided to leave the supervisor free in her/his decision.
You decided to let your assigned employee decide freely about her/his transfer.
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 %}