{% extends "withnav_template.html" %} {% from "components/email-message.html" import email_message %} {% from "components/sms-message.html" import sms_message %} {% from "components/page-footer.html" import page_footer %} {% from "components/textbox.html" import textbox %} {% block page_title %} {{ page_heading }} – GOV.UK Notify {% endblock %} {% block maincolumn_content %} {% if not templates %}

{{ page_heading }}

{% if current_user.has_permissions(['manage_templates']) %} Add a new template {% endif %} {% else %}

{{ page_heading }}

{% if current_user.has_permissions(['manage_templates']) %}
Add new template
{% endif %}
{% if not has_jobs %} {% if current_user.has_permissions(['send_texts', 'send_emails', 'send_letters'], or_=True) %} {{ banner( """ Send yourself a test message """, subhead='Next step', type="tip" )}} {% endif %} {% endif %}
{% for template in templates %}
{% if 'email' == template_type %} {{ email_message( template.subject, template.formatted_as_markup, name=template.name ) }} {% elif 'sms' == template_type %} {{ sms_message(template.formatted_as_markup, name=template.name) }} {% endif %}
{% endfor %}
{% endif %} {% endblock %}