{% extends "global/Page.html" %}
{% load otree static %}
{% block title %}
This dispute has been settled
{% endblock %}
{% block content %}
The suggested settlement has been accepted by both parties.
{% if player.role == Constants.role_agent %}
You will pay £{{group.settlement}} to {{player.background_principal}}.
Thank you for using the dispute resolution procedure.
{% elif player.role == Constants.role_principal %}
You will receive £{{group.settlement}} from {{player.background_agent}}.
Thank you for using the dispute resolution procedure.
{% endif %}