mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-02-17 17:04:55 -05:00
35 lines
1.1 KiB
HTML
35 lines
1.1 KiB
HTML
{% extends "withnav_template.html" %}
|
||
{% from "components/textbox.html" import textbox %}
|
||
{% from "components/page-footer.html" import sticky_page_footer %}
|
||
{% from "components/radios.html" import radios %}
|
||
{% from "components/form.html" import form_wrapper %}
|
||
|
||
{% block service_page_title %}
|
||
{{ heading_action }} letter template
|
||
{% endblock %}
|
||
|
||
{% block maincolumn_content %}
|
||
|
||
<h1 class="heading-large">
|
||
{{ heading_action }} letter template
|
||
</h1>
|
||
|
||
{% call form_wrapper() %}
|
||
<div class="grid-row">
|
||
<div class="column-five-sixths">
|
||
{{ textbox(form.name, width='1-1', hint='Your recipients won’t 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) }}
|
||
{{ sticky_page_footer(
|
||
'Save'
|
||
) }}
|
||
</div>
|
||
<aside class="column-three-quarters">
|
||
{% include "partials/templates/guidance-formatting-letters.html" %}
|
||
{% include "partials/templates/guidance-personalisation.html" %}
|
||
</aside>
|
||
</div>
|
||
{% endcall %}
|
||
|
||
{% endblock %}
|