mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-09-06 10:08:25 -04:00
Our usability testing found that jumping out of the service when going to download the agreement made it difficult for people to find their way back to the ‘Request to go live’ page. This commit adds a duplicate, service-specific versions of these pages which have the same content but: - keep the service navigation - have a link back to the ‘Request to go live’ page
24 lines
545 B
HTML
24 lines
545 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)
|
|
)}}
|
|
|
|
{% include 'views/agreement/_agreement.html'%}
|
|
|
|
</div>
|
|
</div>
|
|
|
|
{% endblock %}
|