Files
notifications-admin/app/templates/views/agreement/service-agreement-signed.html
karlchillmaid 95d4d0b624 Update link
2019-07-18 11:20:29 +01:00

32 lines
923 B
HTML

{% extends "withnav_template.html" %}
{% from "components/page-header.html" import page_header %}
{% block service_page_title %}
Your organisation has already accepted the agreement
{% endblock %}
{% block maincolumn_content %}
<div class="grid-row">
<div class="column-five-sixths">
{{ page_header(
'Your organisation has already accepted the agreement',
back_link=url_for('main.request_to_go_live', service_id=current_service.id)
)}}
<p>
{{ current_service.organisation.name }} has already accepted the GOV.UK
Notify data sharing and financial agreement.
</p>
<p>For more information, you can <a href="{{ url_for('main.service_download_agreement', service_id=current_service.id) }}">download a copy of the agreement</a>.
</p>
<p>
The agreement is confidential and should not be shared outside your organisation.
</p>
</div>
</div>
{% endblock %}