{% extends "global/Page.html" %} {% load otree static %} {% block title %} End of round {% endblock %} {% block content %} {% if group.agreement %}
Your group reached an agreement. The final distribution is:
{% if one %}Your share: €{{ payoff1 }}
Player 2's share: €{{ payoff2 }}
Player 3's share: €{{ payoff3 }}
{% endif %} {% if two %}Your share: €{{ payoff2 }}
Player 1's share: €{{ payoff1 }}
Player 3's share: €{{ payoff3 }}
{% endif %} {% if three %}Your share: €{{ payoff3 }}
Player 1's share: €{{ payoff1 }}
Player 2'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 %}