{% extends "global/Page.html" %}
{% load otree static %}
{% block title %}
Results
{% endblock %}
{% block content %}
The contributions of the players were:
{{player.contribution}} (You)
{% for contribution in list_of_contributions %}
{{ contribution }}
{% endfor %}
The sum of all players' contributions ({{group.total_contribution}}) is multiplied by 2. The amount of {{total_contribution_times_two}} is distributed evenly across all {{C.PLAYERS_PER_GROUP}} players.
Every player receives {{evenly_distributed_share}} on top of the budget they have not spent.
Your profit for this round was {{ player.profit }} points.
{% next_button %}
{% endblock %}