{% extends "base.html" %} {% from "components/ui.html" import page_header %} {% block content %} {% set breadcrumbs = [ {'text': 'Admin', 'url': url_for('admin.admin_dashboard')}, {'text': 'Email Templates'} ] %} {{ page_header( icon_class='fas fa-envelope', title_text='Email Templates', subtitle_text='Manage email templates for invoice emails', breadcrumbs=breadcrumbs, actions_html='Create Template' ) }} {% if templates %}
{% for template in templates %} {% endfor %}
Name Description Status Created Actions
{{ template.name }} {{ template.description or '-' }} {% if template.is_default %} Default {% else %} Active {% endif %} {{ template.created_at.strftime('%Y-%m-%d') if template.created_at else '-' }} View Edit
{% else %}

{{ _('No email templates found.') }}

{{ _('Create your first email template to customize invoice emails.') }}

{{ _('Create Email Template') }}
{% endif %} {% endblock %}