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

Part 1 was selected for payment. In Part 1, you were in the role of an Employee.
The CEO decided to force the supervisor to set the minimum transfer of 5 points.
Your supervisor had no choice.
You transferred {{ decision13_from_part2 }} points
You kept: {{ points_kept_13 }} points
You therefore receive {{ points_kept_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 supervisor_decision == 2 %}

Part 1 was selected for payment. In Part 1, you were in the role of an Employee.
The CEO decided to leave the supervisor free in her/his decision.
Your supervisor decided to set the minimum transfer of 5 points.
You transferred: {{ decision12_from_part2 }} points
You kept: {{ points_kept_12 }} points
You therefore receive {{ points_kept_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 supervisor_decision == 1 %}

Part 1 was selected for payment. In Part 1, you were in the role of an Employee.
The CEO decided to leave the supervisor free in her/his decision.
Your supervisor decided to let the employee decide completely freely about her/his transfer.
You transferred: {{ decision11_from_part2 }} points
You kept: {{ points_kept_11 }} points
You therefore receive {{ points_kept_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 %}