2015-12-14 16:53:07 +00:00
|
|
|
{% extends "withnav_template.html" %}
|
2016-01-13 16:21:29 +00:00
|
|
|
{% from "components/sms-message.html" import sms_message %}
|
2016-01-13 16:27:54 +00:00
|
|
|
{% from "components/email-message.html" import email_message %}
|
|
|
|
|
{% from "components/browse-list.html" import browse_list %}
|
2015-12-09 10:47:38 +00:00
|
|
|
|
|
|
|
|
{% block page_title %}
|
|
|
|
|
GOV.UK Notify | Manage templates
|
|
|
|
|
{% endblock %}
|
|
|
|
|
|
2015-12-14 16:53:07 +00:00
|
|
|
{% block maincolumn_content %}
|
|
|
|
|
|
2016-01-13 16:21:29 +00:00
|
|
|
<div class="grid-row">
|
|
|
|
|
<div class="column-two-thirds">
|
|
|
|
|
|
2016-01-13 16:27:54 +00:00
|
|
|
<h1 class="heading-xlarge">Templates</h1>
|
|
|
|
|
|
2016-01-14 09:44:06 +00:00
|
|
|
<p>
|
2016-01-19 15:54:12 +00:00
|
|
|
<a href="{{ url_for('.add_service_template', service_id=service_id) }}">Create new template</a>
|
2016-01-14 09:44:06 +00:00
|
|
|
|
2016-01-13 16:27:54 +00:00
|
|
|
{% for template in templates %}
|
2016-01-22 11:14:56 +00:00
|
|
|
{% if template.get_field('template_type') == 'sms' %}
|
2016-01-13 16:27:54 +00:00
|
|
|
{{ sms_message(
|
2016-01-22 11:20:39 +00:00
|
|
|
template.get_field('content'),
|
|
|
|
|
name=template.title,
|
2016-01-22 12:44:19 +00:00
|
|
|
id=template.get_field('id'),
|
2016-01-22 11:14:56 +00:00
|
|
|
edit_link=url_for('.edit_service_template', service_id=template.get_field('service'), template_id=template.get_field('id'))
|
2016-01-13 16:27:54 +00:00
|
|
|
) }}
|
2016-01-22 11:14:56 +00:00
|
|
|
{% elif template.get_field('template_type') == 'email' %}
|
2016-01-13 16:27:54 +00:00
|
|
|
{{ email_message(
|
2016-01-22 11:20:39 +00:00
|
|
|
template.get_field('subject'),
|
|
|
|
|
template.get_field('content'),
|
|
|
|
|
name=template.get_field('name'),
|
2016-01-22 11:14:56 +00:00
|
|
|
edit_link=url_for('.edit_service_template', service_id=template.get_field('service'), template_id=template.get_field('id'))
|
2016-01-13 16:27:54 +00:00
|
|
|
) }}
|
|
|
|
|
{% endif %}
|
2016-01-13 16:21:29 +00:00
|
|
|
{% endfor %}
|
|
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
2015-12-09 10:47:38 +00:00
|
|
|
|
|
|
|
|
{% endblock %}
|