Files
notifications-admin/app/templates/views/edit-letter-template.html
T

33 lines
1.0 KiB
HTML
Raw Normal View History

2016-11-08 13:12:07 +00:00
{% extends "withnav_template.html" %}
{% from "components/textbox.html" import textbox %}
{% from "components/page-footer.html" import page_footer %}
2017-02-13 10:45:15 +00:00
{% block service_page_title %}
{{ heading_action }} letter template
2016-11-08 13:12:07 +00:00
{% endblock %}
{% block maincolumn_content %}
<h1 class="heading-large">
{{ heading_action }} letter template
</h1>
<form method="post">
<div class="grid-row">
2017-04-07 18:27:00 +01:00
<div class="column-five-sixths">
2016-11-08 13:12:07 +00:00
{{ textbox(form.name, width='1-1', hint='Your recipients wont see this', rows=10) }}
{{ textbox(form.subject, width='1-1', highlight_tags=True, rows=2) }}
{{ textbox(form.template_content, highlight_tags=True, width='1-1', rows=8) }}
{{ page_footer(
'Save'
2016-11-08 13:12:07 +00:00
) }}
</div>
<aside class="column-three-quarters">
2016-11-08 13:56:02 +00:00
{% include "partials/templates/guidance-formatting-letters.html" %}
2016-11-08 13:12:07 +00:00
{% include "partials/templates/guidance-personalisation.html" %}
</aside>
</div>
</form>
{% endblock %}