{% block title %}
Round {{ player.round_number }} / {{ Constants.num_rounds }}
{% endblock %} {% block content %}
{% if reason == 'coalition' %}

This round ended because an agreement was finalized.

{% elif reason == 'time' %}

This round ended because no agreement was finalized.

{% else %}

This round ended: {{ reason }}

{% endif %} {% if not was_in_coalition %}

You did not manage to agree on any point. Your share in this round is 0 points.

{% else %}

Your agreed on your share to be {{ gain }} points.

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