Files
notifications-admin/app/templates/views/organisations/organisation/settings/edit-go-live-notes.html
Katie Smith da971b2da7 Allow custom notes when service goes live
This adds an option on the organisation settings page to add
'request_to_go_live_notes'. When a service belonging to this
organisation requests to go live, any go live notes for the
organisation will be added to the Zendesk ticket in the 'Agreement
signed' section.
2019-05-14 14:24:26 +01:00

26 lines
790 B
HTML

{% from "components/form.html" import form_wrapper %}
{% from "components/page-footer.html" import page_footer %}
{% from "components/textbox.html" import textbox %}
{% extends "org_template.html" %}
{% block org_page_title %}
Edit request to go live notes
{% endblock %}
{% block maincolumn_content %}
<h1 class="heading-large">Edit request to go live notes</h1>
<div class="grid-row">
<div class="column-five-sixths">
<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() %}
{{ textbox(form.request_to_go_live_notes, width='1-1', rows=3) }}
{{ page_footer('Save') }}
{% endcall %}
</div>
</div>
{% endblock %}