mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-09-10 10:03:21 -04:00
If the user’s organisation has already signed the agreement we shouldn’t give them the instructions for how to sign it.
34 lines
929 B
HTML
34 lines
929 B
HTML
{% extends "withoutnav_template.html" %}
|
||
{% from "components/sub-navigation.html" import sub_navigation %}
|
||
|
||
{% block per_page_title %}
|
||
Download the 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">
|
||
Download the 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.
|
||
</p>
|
||
<p>
|
||
If you need to you can <a href="{{ url_for('main.download_agreement') }}">download a copy here</a>.
|
||
</p>
|
||
<p>
|
||
The agreement contains commercially sensitive information, so don’t share it more widely than you need to.
|
||
</p>
|
||
</div>
|
||
</div>
|
||
|
||
{% endblock %}
|