{{ extends 'global/Page.html' }} {{ block title }}Results{{ endblock }} {{ block content }} {{if player.team == "Sharks"}}
You were a member of the {{player.team}}. You started with an endowment of {{Constants.endowment}}. You contributed {{player.contribution}} to the competition with the Jets.
{{else}}You were a member of the {{player.team}}. You started with an endowment of {{Constants.endowment}}. You contributed {{player.contribution}} to the competition with the Sharks.
{{endif}} {{if group.winning_team == "Tie"}}The Sharks contributed {{group.shark_contributions}} total to the competition and the Jets contributed {{group.jet_contributions}} total. It was a tie, so neither team won the competition.
{{else}}The Sharks contributed {{group.shark_contributions}} total to the competition and the Jets contributed {{group.jet_contributions}} total. The {{group.winning_team}} won {{group.team_winnings}} from the {{group.losing_team}}.
{{endif}} {{ if player.team == group.winning_team}}Your payoff was {{player.payoff}}. This includes your endowment of {{Constants.endowment}} minus your contribution of {{player.contribution}} to the competition, plus {{group.individual_share}}, which is your share of the winnings.
{{endif}} {{if player.team == group.losing_team}}Your payoff was {{player.payoff}}. Since your team lost the competition, the winning team captured any points that you did not contribute.
{{endif}} {{if group.winning_team == "Tie"}}Your payoff was {{player.payoff}}. This includes your endowment of {{Constants.endowment}} minus your contribution of {{player.contribution}} to the competition. The competition ended in a tie, so neither team captured any points.
{{endif}} {{ if player.round_number < Constants.num_rounds }} {{ next_button }} {{endif}} {{ endblock }}