{% extends 'index.html' %} {% load static %} {% load i18n %} {% block content %}

{% trans "Mail Templates" %}

{% if perms.base.add_horillamailtemplate %}
{% trans "Create" %}
{% endif %}
{% for template in templates %}
{% if perms.base.delete_horillamailtemplate %}

{{ template.title }}

{% endif %} {% if perms.base.change_horillamailtemplate %} {% endif %}
{{ template.body|safe }}
{% if perms.base.change_horillamailtemplate %} {% trans "View Template" %} {% endif %}
{% endfor %}
{% endblock %}