mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-09-11 10:28:41 -04:00
Now that the content in these partials is only used on one page per partial they no longer need to be partials. This commit re-integrates them into the pages that were including them, making the content easier to manage.
31 lines
917 B
HTML
31 lines
917 B
HTML
{% extends "withnav_template.html" %}
|
||
{% from "components/page-header.html" import page_header %}
|
||
|
||
{% block service_page_title %}
|
||
GOV.UK Notify data sharing and financial agreement
|
||
{% endblock %}
|
||
|
||
{% block maincolumn_content %}
|
||
|
||
<div class="grid-row">
|
||
<div class="column-five-sixths">
|
||
|
||
{{ page_header(
|
||
'GOV.UK Notify data sharing and financial agreement',
|
||
back_link=url_for('main.request_to_go_live', service_id=current_service.id)
|
||
)}}
|
||
|
||
<p>
|
||
Your organisation ({{ current_service.organisation.name }}) has already accepted the GOV.UK
|
||
Notify data sharing and financial agreement. You can
|
||
<a href="{{ url_for('main.service_download_agreement', service_id=current_service.id) }}">download a copy</a>.
|
||
</p>
|
||
<p>
|
||
The agreement contains commercially sensitive information, so don’t share it more widely than you need to.
|
||
</p>
|
||
|
||
</div>
|
||
</div>
|
||
|
||
{% endblock %}
|