{% 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 %}

{{ template.name }}

{% if template.get_raw('updated_at', None) %}

Edited {{ template.get_raw('updated_at', None)|format_date_short }} see previous versions

{% endif %}
{% include 'views/templates/_template.html' %} {% endfor %}
{% endif %} {% endblock %}