Files
notifications-admin/app/templates/views/agreement/service-agreement-signed.html
T

32 lines
922 B
HTML
Raw Normal View History

{% extends "withnav_template.html" %}
{% from "components/page-header.html" import page_header %}
2022-12-14 11:50:51 -05:00
{% from "components/uk_components/back-link/macro.njk" import govukBackLink %}
{% block service_page_title %}
2022-12-20 09:44:33 -05:00
Your organization has already accepted the agreement
{% endblock %}
{% block backLink %}
{{ govukBackLink({ "href": url_for('main.request_to_go_live', service_id=current_service.id) }) }}
{% endblock %}
{% block maincolumn_content %}
2020-02-19 11:57:15 +00:00
<div class="govuk-grid-row">
<div class="govuk-grid-column-five-sixths">
2022-12-20 09:44:33 -05:00
{{ page_header('Your organization has already accepted the agreement')}}
<p class="govuk-body">
2022-07-20 15:23:54 -07:00
{{ current_service.organisation.name }} has already accepted the US
2019-07-18 11:03:17 +01:00
Notify data sharing and financial agreement.
</p>
<p class="govuk-body">
2022-12-20 09:44:33 -05:00
The agreement is confidential and should not be shared outside your organization.
2019-07-15 10:51:15 +01:00
</p>
</div>
</div>
{% endblock %}