mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-02-18 17:34:34 -05:00
Users come to this page from various places, including the new 'Sign the…' link on the request to go live page. Of these users: - some won't have signed it - some will have signed it - some will see that it's complete and wonder why, as they haven’t actually done anything So it’s more appropriate for the title of this page to be descriptive, rather than an action.
32 lines
866 B
HTML
32 lines
866 B
HTML
{% extends "withoutnav_template.html" %}
|
||
{% from "components/sub-navigation.html" import sub_navigation %}
|
||
|
||
{% block per_page_title %}
|
||
GOV.UK Notify data sharing and financial agreement
|
||
{% endblock %}
|
||
|
||
{% block maincolumn_content %}
|
||
|
||
<div class="grid-row">
|
||
<div class="column-one-third">
|
||
{{ sub_navigation(navigation_links) }}
|
||
</div>
|
||
<div class="column-two-thirds">
|
||
|
||
<h1 class="heading-large">
|
||
GOV.UK Notify data sharing and financial agreement
|
||
</h1>
|
||
|
||
<p>
|
||
Your organisation ({{ owner }}) has already accepted the GOV.UK
|
||
Notify data sharing and financial agreement. You can
|
||
<a href="{{ url_for('main.download_agreement') }}">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 %}
|