{% extends "withnav_template.html" %} {% from "components/sms-message.html" import sms_message %} {% from "components/email-message.html" import email_message %} {% from "components/browse-list.html" import browse_list %} {% block page_title %} Manage templates – GOV.UK Notify {% endblock %} {% block maincolumn_content %}

Manage templates

{% if not has_jobs %} {{ banner( 'Send yourself a text message'.format( url_for(".choose_sms_template", service_id=service_id) )|safe, subhead='Next step', type="tip" )}} {% endif %}
{% for template in templates %} {% if template.template_type == 'email' %} {{ email_message( template.get_field('subject'), template.get_field('content'), name=template.get_field('name'), edit_link=url_for('.edit_service_template', service_id=service_id, template_id=template.id) ) }} {% else %} {{ sms_message( template.formatted_as_markup, name=template.name, id=template.id, edit_link=url_for('.edit_service_template', service_id=service_id, template_id=template.id) ) }} {% endif %} {% endfor %}

Add new template

{% endblock %}