{% block title %}
Results
{% endblock %}
{% block content %}
The contributions of the players were:
{{player.contribution}} (You)
{% for contribution in list_of_contributions %}
{{ contribution }}
{% endfor %}
The minimum amount invested by any player was {{minimum_amount}}. Multiplied by 2, the amount every player receives on top of the budget they have not spent is {{minimum_amount_doubled}}.
Your profit for this round was {{ player_payoff }} points.
{% next_button %}
{% endblock %}