{% extends "base.html" %} {% block title %}Email Templates{% endblock %} {% block content %}

Add New Template

{% if error %}
{{ error }}
{% endif %} {% if message %}
{{ message }}
{% endif %}

Existing Templates

{% if email_templates %}
{% for template in email_templates %}
{{ template.name }}
{{ template.subject }}
{% endfor %}
{% else %}

No templates found. Create your first template above.

{% endif %}
{% endblock %}