{% extends "withnav_template.html" %} {% from "components/textbox.html" import textbox %} {% from "components/page-footer.html" import page_footer %} {% block page_title %} {{ heading_action }} text message template – GOV.UK Notify {% endblock %} {% block maincolumn_content %}

{{ heading_action }} text message template

{{ textbox(form.name, width='1-1', hint='Your recipients won’t see this') }}
{{ textbox(form.template_content, highlight_tags=True, width='1-1') }} {{ page_footer( 'Save', delete_link=url_for('.delete_service_template', service_id=service_id, template_id=template_id) if template_id or None, delete_link_text='Delete this template' ) }}
{% endblock %}