2015-12-14 16:53:07 +00:00
|
|
|
{% extends "withnav_template.html" %}
|
2015-12-20 00:00:01 +00:00
|
|
|
{% from "components/textbox.html" import textbox %}
|
|
|
|
|
{% from "components/submit-form.html" import submit_form %}
|
2015-12-09 10:52:09 +00:00
|
|
|
|
|
|
|
|
{% block page_title %}
|
|
|
|
|
GOV.UK Notify | Edit template
|
|
|
|
|
{% endblock %}
|
|
|
|
|
|
2015-12-14 16:53:07 +00:00
|
|
|
{% block maincolumn_content %}
|
|
|
|
|
|
2015-12-20 00:00:01 +00:00
|
|
|
<h1 class="heading-xlarge">{{ h1 }}</h1>
|
2015-12-09 10:52:09 +00:00
|
|
|
|
2015-12-20 00:00:01 +00:00
|
|
|
<form method="post">
|
|
|
|
|
{{ textbox(name='template_name', label='Template name', value=template_name) }}
|
|
|
|
|
{{ textbox(name='template_body', label='Message', small=False, value=template_body) }}
|
|
|
|
|
{{ submit_form('Save and continue') }}
|
|
|
|
|
</form>
|
2015-12-09 10:52:09 +00:00
|
|
|
|
|
|
|
|
<p><a href="manage-templates">Back to manage templates</a></p>
|
|
|
|
|
|
|
|
|
|
{% endblock %}
|