Files
notifications-admin/app/templates/views/organisations/organisation/settings/edit-go-live-notes.html
T

31 lines
1.1 KiB
HTML
Raw Normal View History

{% extends "org_template.html" %}
2019-05-13 14:50:40 +01:00
{% from "components/form.html" import form_wrapper %}
{% from "components/page-footer.html" import page_footer %}
{% from "components/page-header.html" import page_header %}
2019-05-13 14:50:40 +01:00
{% from "components/textbox.html" import textbox %}
{% from "components/back-link/macro.njk" import govukBackLink %}
2019-05-13 14:50:40 +01:00
{% block org_page_title %}
Edit request to go live notes
{% endblock %}
{% block backLink %}
{{ govukBackLink({ "href": url_for('.organisation_settings', org_id=current_org.id) }) }}
{% endblock %}
2019-05-13 14:50:40 +01:00
{% block maincolumn_content %}
{{ page_header("Edit request to go live notes") }}
2020-02-19 11:57:15 +00:00
<div class="govuk-grid-row">
<div class="govuk-grid-column-five-sixths">
<p class="govuk-body">
2019-05-13 14:50:40 +01:00
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() %}
2019-10-16 16:34:18 +01:00
{{ textbox(form.request_to_go_live_notes, width='1-1', rows=3, autosize=True) }}
2019-05-13 14:50:40 +01:00
{{ page_footer('Save') }}
{% endcall %}
</div>
</div>
{% endblock %}