{% extends "global/Page.html" %}
{% load otree static %}
{% block title %}
Results
{% endblock %}
{% block content %}
The contributions of the players were:
{{player.contribution}} {{C.currency_name}} (You)
{% for contribution in list_of_contributions %}
{{ contribution }} {{C.currency_name}}
{% endfor %}
The sum of all players' contributions ({{group_total_contribution_ICG}} {{C.currency_name}}) is multiplied by 2. The amount of {{total_contribution_times_two}} {{C.currency_name}} is distributed evenly across all {{C.PLAYERS_PER_GROUP}} players.
Every player receives {{evenly_distributed_share}} {{C.currency_name}} on top of the budget they have not spent.
Your profit for this round was {{ player.profit }} {{C.currency_name}}.
The profits of all players were:
{{player.profit}} {{C.currency_name}} (You)
{% for profit in list_of_profits %}
{{ profit }} {{C.currency_name}}
{% endfor %}
{{if treatment == "ICG_then_CCG" and player.round_number == C.half_NUM_ROUNDS}}
The first part of the experiment is now over. Click the "next" button to get to the second part.
{{endif}}
{% next_button %}
{% endblock %}