{{ extends 'global/Page.html' }}
{{ block title }}Result{{ endblock }}
{{ block content }}
You started with an endowment of {{ C.ENDOWMENT }},
of which you contributed {{ player.contribution }}.
{{if player.type == 'Manager'}}
The Rank A worker contrubuted {{group.workeracon}}.
The Rank B worker contrubuted {{group.workerbcon}}.
{{endif}}
{{if player.type == 'Worker A'}}
The Manager contrubuted {{group.managercon}}.
The Rank B worker contrubuted {{group.workerbcon}}.
{{endif}}
{{if player.type == 'Worker B'}}
The Manager contrubuted {{group.managercon}}.
The Rank A worker contrubuted {{group.workeracon}}.
{{endif}}
Your group contributed {{ group.total_contribution }},
{{ if group.total_contribution >= C.THRESHOLD }}
Your group completed the project!
{{ else }}
Your group did not complete the project.
{{ endif }}
Your profit is therefore {{ player.payoff }}.
{{ next_button }}
{{ endblock }}