{% extends "global/Page.html" %}
{% load otree %}
{% block title %}
End of round {{ current_round }}
{% endblock %}
{% block content %}
{% if group.optionchoice == 0 %}
Your work output in this round was {{ group.Work_Output_Light }}.
The work output of the DARK BLUE player was {{ group.Work_Output_Dark }}.
{% if group.Work_Output_Higher == 0 %} The DARK BLUE player's output is {{ group.Work_Output_Difference }} points lower than yours. For this difference in output, the GREEN player has determined that YOU will receive the high payment.
{% endif %}
{% if group.Work_Output_Higher == 1 %} The DARK BLUE player's output is {{ group.Work_Output_Difference }} points higher than yours. For this difference in output, the GREEN player has determined that YOU will receive the high payment.
{% endif %}
{% if group.Work_Output_Higher == 2 %} The DARK BLUE player's output is the same as yours. For this difference in output, the GREEN player has determined that YOU will receive the high payment.
{% endif %}
Consequently, you receive the high payment of {{ Constants.High_Payment }} Tokens.
You have chosen an effort of {{ group.Effort_Light }} with an associated cost of {{ group.Effort_Cost_Light | to2}} Tokens.
Therefore, your total payoff in this round is {{ group.Payoff_Light_Round | to2}} Tokens.
Click Continue to proceed to the next decision round.
Remember: New randomly groups of 3 participants will be formed in the next round.
{% endif %}
{% if group.optionchoice == 1 %}
Your work output in this round was {{ group.Work_Output_Light }}.
The work output of the DARK BLUE player was {{ group.Work_Output_Dark }}.
{% if group.Work_Output_Higher == 0 %} The DARK BLUE player's output is {{ group.Work_Output_Difference }} points lower than yours. For this difference in output, the GREEN player has determined that the DARK BLUE player receives the high payment.
{% endif %}
{% if group.Work_Output_Higher == 1 %} The DARK BLUE player's output is {{ group.Work_Output_Difference }} points higher than yours. For this difference in output, the GREEN player has determined that the DARK BLUE player receives the high payment.
{% endif %}
{% if group.Work_Output_Higher == 2 %} The DARK BLUE player's output is the same than yours. For this difference in output, the GREEN player has determined that the DARK BLUE player receives the high payment.
{% endif %}
Consequently, you receive the low payment of {{ Constants.Low_Payment }} Tokens.
You have chosen an effort of {{ group.Effort_Light }} with an associated cost of {{ group.Effort_Cost_Light | to2}} Tokens.
Therefore, your total payoff in this round is {{ group.Payoff_Light_Round | to2}} Tokens.
Click Continue to proceed to the next decision round.
Remember: New groups of 3 participants will be formed at random in the next round.