2021-07-30 18:23:12 +01:00
|
|
|
{% 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 %}
|
2019-06-03 13:39:25 +01:00
|
|
|
{% from "components/page-header.html" import page_header %}
|
2019-05-13 14:50:40 +01:00
|
|
|
{% from "components/textbox.html" import textbox %}
|
2023-08-30 11:07:38 -04:00
|
|
|
{% from "components/components/back-link/macro.njk" import usaBackLink %}
|
2019-05-13 14:50:40 +01:00
|
|
|
|
|
|
|
|
{% block org_page_title %}
|
|
|
|
|
Edit request to go live notes
|
|
|
|
|
{% endblock %}
|
|
|
|
|
|
2021-07-30 18:23:12 +01:00
|
|
|
{% block backLink %}
|
2023-08-30 11:07:38 -04:00
|
|
|
{{ usaBackLink({ "href": url_for('.organization_settings', org_id=current_org.id) }) }}
|
2021-07-30 18:23:12 +01:00
|
|
|
{% endblock %}
|
|
|
|
|
|
2019-05-13 14:50:40 +01:00
|
|
|
{% block maincolumn_content %}
|
2021-07-30 18:23:12 +01:00
|
|
|
{{ page_header("Edit request to go live notes") }}
|
2023-08-23 16:18:25 -04:00
|
|
|
<div class="grid-row">
|
|
|
|
|
<div class="grid-col-10">
|
2023-06-06 15:28:24 -04:00
|
|
|
<p>
|
2019-05-13 14:50:40 +01:00
|
|
|
Text entered here will be displayed in the Zendesk ticket when a service
|
2023-01-05 14:35:37 -05:00
|
|
|
belonging to this organization requests to go live.
|
2019-05-13 14:50:40 +01:00
|
|
|
</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 %}
|