mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-09-04 08:38:26 -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.
30 lines
971 B
HTML
30 lines
971 B
HTML
{% from "components/form.html" import form_wrapper %}
|
|
{% from "components/page-footer.html" import page_footer %}
|
|
{% from "components/page-header.html" import page_header %}
|
|
{% from "components/textbox.html" import textbox %}
|
|
|
|
{% extends "org_template.html" %}
|
|
|
|
{% block org_page_title %}
|
|
Edit request to go live notes
|
|
{% endblock %}
|
|
|
|
{% block maincolumn_content %}
|
|
{{ page_header(
|
|
"Edit request to go live notes",
|
|
back_link=url_for('.organisation_settings', org_id=current_org.id)
|
|
) }}
|
|
<div class="govuk-grid-row">
|
|
<div class="govuk-grid-column-five-sixths">
|
|
<p class="govuk-body">
|
|
Text entered here will be displayed in the Zendesk ticket when a service
|
|
belonging to this organisation requests to go live.
|
|
</p>
|
|
{% call form_wrapper() %}
|
|
{{ textbox(form.request_to_go_live_notes, width='1-1', rows=3, autosize=True) }}
|
|
{{ page_footer('Save') }}
|
|
{% endcall %}
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|