{% 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', 'url': url_for('admin.list_email_templates')}, {'text': template.name} ] %} {{ page_header( icon_class='fas fa-envelope', title_text=template.name, subtitle_text='Email template details', breadcrumbs=breadcrumbs, actions_html='' + 'Edit' ) }}

{{ _('Template Information') }}

Name
{{ template.name }}
{% if template.description %}
Description
{{ template.description }}
{% endif %}
Status
{% if template.is_default %} Default {% else %} Active {% endif %}
Created
{{ template.created_at.strftime('%Y-%m-%d %H:%M') if template.created_at else '-' }}
Last Updated
{{ template.updated_at.strftime('%Y-%m-%d %H:%M') if template.updated_at else '-' }}
{% if template.html %}

{{ _('HTML Template') }}

{{ template.html }}
{% endif %} {% if template.css %}

CSS Styles

{{ template.css }}
{% endif %} {% endblock %}