{% extends "global/Page.html" %}
{% load otree static %}
{% block title %}
Result of the dispute resolution procedure
{% endblock %}
{% block content %}
This dispute has been settled.
{% if player.role == Constants.role_agent %}
As visible moves of both parties are legally binding, you will pay £{{group.settlement}} to {{player.background_principal}}.
Thank you for using the dispute resolution procedure.
{% elif player.role == Constants.role_principal %}
As visible moves of both parties are legally binding, you will receive £{{group.settlement}} from {{player.background_agent}}.
Thank you for using the dispute resolution procedure.
{% endif %}