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

30 lines
952 B
HTML
Raw Normal View History

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 %}
{% 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)
) }}
2020-02-19 11:57:15 +00:00
<div class="govuk-grid-row">
<div class="govuk-grid-column-five-sixths">
2019-05-13 14:50:40 +01:00
<p>
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 %}