{% 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 minimum amount invested by any player was {{minimum_amount}} {{C.currency_name}}. Multiplied by 2, the amount every player receives on top of the budget they have not spent is {{minimum_amount_doubled}} {{C.currency_name}}.
Your profit for this round was {{ player.profit }} {{C.currency_name}}.