{% extends "withnav_template.html" %} {% block page_title %} {{ page_heading }} – GOV.UK Notify {% endblock %} {% block maincolumn_content %} {% if not templates %}

{{ page_heading }}

{% if current_user.has_permissions(permissions=['manage_templates'], any_=True) %}

You need a template before you can send {{ 'emails' if 'email' == template_type else 'text messages' }}

Add a new template {% else %}

You need to ask your service manager to add templates before you can send messages

{% endif %} {% else %}

{{ page_heading }}

{% if current_user.has_permissions(permissions=['manage_templates'], admin_override=True) %}
Add new template
{% endif %}
{% for template in templates %} {% with show_title=True %} {% include 'views/templates/_template.html' %} {% endwith %} {% endfor %}
{% endif %} {% endblock %}