mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-07-16 03:10:16 -04:00
All paragraphs should have class="govuk-body", or be otherwise custom-styled. This commit adds some extra checks to our test fixture that looks for paragraphs that don’t have any styling. Our test coverage is pretty good, so this should check almost all pages, and prevent regressions. I’ve done this in such a way that it can be extended for other elements (e.g. links) in the future.
32 lines
1.0 KiB
HTML
32 lines
1.0 KiB
HTML
{% extends "withnav_template.html" %}
|
|
{% from "components/page-header.html" import page_header %}
|
|
|
|
{% block service_page_title %}
|
|
Your organisation has already accepted the agreement
|
|
{% endblock %}
|
|
|
|
{% block maincolumn_content %}
|
|
|
|
<div class="govuk-grid-row">
|
|
<div class="govuk-grid-column-five-sixths">
|
|
|
|
{{ page_header(
|
|
'Your organisation has already accepted the agreement',
|
|
back_link=url_for('main.request_to_go_live', service_id=current_service.id)
|
|
)}}
|
|
|
|
<p class="govuk-body">
|
|
{{ current_service.organisation.name }} has already accepted the GOV.UK
|
|
Notify data sharing and financial agreement.
|
|
</p>
|
|
<p class="govuk-body">For more information, you can <a class="govuk-link govuk-link--no-visited-state" href="{{ url_for('main.service_download_agreement', service_id=current_service.id) }}">download a copy of the agreement</a>.
|
|
</p>
|
|
<p class="govuk-body">
|
|
The agreement is confidential and should not be shared outside your organisation.
|
|
</p>
|
|
|
|
</div>
|
|
</div>
|
|
|
|
{% endblock %}
|