{% extends "global/Page.html" %} {% load otree static %} {% block title %} Iteration 2 - End of round {% endblock %} {% block content %} {% if group.agreement %}

Your group reached an agreement. The final distribution is:

{% if one %}

Your share: €{{ payoff1 }}

Blue Player's share: €{{ payoff2 }}

Yellow Player's share: €{{ payoff3 }}

{% endif %} {% if two %}

Your share: €{{ payoff2 }}

Orange Player's share: €{{ payoff1 }}

Yellow Player's share: €{{ payoff3 }}

{% endif %} {% if three %}

Your share: €{{ payoff3 }}

Orange Player's share: €{{ payoff1 }}

Blue Player's share: €{{ payoff2 }}

{% endif %} {% else %}

Your group did not reach an agreement. You will now proceed to the next round.

The new total amount of money to be distributed is: €{{ pie }}.

{% endif %} {% next_button %} {% endblock %}