{% load i18n %}
{% trans "Remove Scheduled Status Confirmation" %}

{% blocktrans trimmed with client=object.client from=object.get_status_from_display to=object.get_status_to_display date=object.change_date %} Your are trying to remove the scheduled status related to the client {{ client }}, in order to change the status from {{ from }} to {{ to }} the next {{ date }}. {% endblocktrans %}

{% with pair=object.get_pair %} {% if pair %}

{% blocktrans trimmed with client=pair.client from=pair.get_status_from_display to=pair.get_status_to_display date=pair.change_date %} The scheduled status to be removed, is directly related to the scheduled status to change the status from {{ from }} to {{ to }} the next {{ date }}. If you finally accept, both scheduled status will be removed. {% endblocktrans %}

{% endif %} {% endwith %}

{% blocktrans trimmed %} Press Cancel to avoid or Accept to complete this operation. {% endblocktrans %}

{% csrf_token %}