2019-05-01 08:29:32 +01:00
{% extends "withnav_template.html" %}
{% from "components/page-header.html" import page_header %}
{% block service_page_title %}
2019-07-18 11:13:26 +01:00
Your organisation has already accepted the agreement
2019-05-01 08:29:32 +01:00
{% endblock %}
{% block maincolumn_content %}
2020-02-19 11:57:15 +00:00
< div class = "govuk-grid-row" >
2020-02-20 16:55:56 +00:00
< div class = "govuk-grid-column-five-sixths" >
2019-05-01 08:29:32 +01:00
{{ page_header(
2019-07-18 11:13:26 +01:00
'Your organisation has already accepted the agreement',
2019-05-01 08:29:32 +01:00
back_link=url_for('main.request_to_go_live', service_id=current_service.id)
)}}
2020-05-29 17:11:01 +01:00
< p class = "govuk-body" >
2019-07-18 11:13:26 +01:00
{{ current_service.organisation.name }} has already accepted the GOV.UK
2019-07-18 11:03:17 +01:00
Notify data sharing and financial agreement.
< / p >
2020-05-29 17:11:01 +01:00
< p class = "govuk-body" > For more information, you can < a class = "govuk-link govuk-link--no-visited-state" href = "{{ url_for('main.service_download_agreement', service_id=current_service.id) }}" > download a copy of the agreement< / a > .
2019-07-15 10:51:15 +01:00
< / p >
2020-05-29 17:11:01 +01:00
< p class = "govuk-body" >
2019-07-18 11:03:17 +01:00
The agreement is confidential and should not be shared outside your organisation.
2019-07-15 10:51:15 +01:00
< / p >
2019-05-01 08:29:32 +01:00
< / div >
< / div >
{% endblock %}