mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-07-16 11:20:12 -04:00
Since placeholders (almost) work now, it’s worth telling people what the syntax is. This commit also removes the ‘template type’ picker, since you can only create SMS templates at the moment. This will be revisited when we start looking at how you add an email template.
41 lines
1.3 KiB
HTML
41 lines
1.3 KiB
HTML
{% extends "withnav_template.html" %}
|
||
{% from "components/textbox.html" import textbox %}
|
||
{% from "components/page-footer.html" import page_footer %}
|
||
|
||
{% block page_title %}
|
||
{{ h1 }} – GOV.UK Notify
|
||
{% endblock %}
|
||
|
||
{% block maincolumn_content %}
|
||
|
||
<h1 class="heading-large">{{ h1 }}</h1>
|
||
|
||
<form method="post">
|
||
<div class="grid-row">
|
||
<div class="column-two-thirds">
|
||
{{ textbox(form.name, width='1-1') }}
|
||
</div>
|
||
</div>
|
||
<div class="grid-row">
|
||
<div class="column-two-thirds">
|
||
{{ textbox(form.template_content, highlight_tags=True, width='1-1') }}
|
||
</div>
|
||
<div class="column-one-third">
|
||
<label for='template_content' class='edit-template-placeholder-hint'>
|
||
Add placeholders using double brackets, eg Your thing
|
||
is due on ((date))
|
||
</label>
|
||
</div>
|
||
</div>
|
||
{{ 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',
|
||
secondary_link=url_for('.manage_service_templates', service_id=service_id),
|
||
secondary_link_text='Back to templates'
|
||
) }}
|
||
</form>
|
||
|
||
|
||
{% endblock %}
|