mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-08-15 15:28:50 -04:00
Rather than making users contact us to get the agreement, we should just let them download it, when we know which version to send them. This commit adds two endpoints: - one to serve a page which links to the agreement - one to serve the agreement itself These pages are not linked to anywhere because the underlying files don’t exist yet. So I haven’t bothered putting real content on the page yet either. I imagine the deploy sequence will be: 1. Upload the files to the buckets in each environment 2. Deploy this code through each enviroment, checking the links work 3. Make another PR to start linking to the endpoints added by this commit
28 lines
599 B
HTML
28 lines
599 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>
|
|
<a href="{{ url_for('main.download_agreement') }}">Download</a>.
|
|
</p>
|
|
|
|
</div>
|
|
</div>
|
|
|
|
{% endblock %}
|