{% extends "base.html" %} {% block title %}Letter Templates - Vera Medical CRM{% endblock %} {% block content %}

Letter Templates

Manage letter templates for automated correspondence

New Template
{% if templates and templates|length > 0 %}
{% for template in templates %}

{{ template['template_name'] }}

{% if template['template_category'] %} {{ template['template_category']|title }} {% endif %} {% if template['is_active'] == 0 %} Inactive {% endif %}

{{ template['template_content'][:200] }}{% if template['template_content']|length > 200 %}...{% endif %}

{{ template['created_by'] or 'System' }} {{ template['created_at']|format_datetime if template['created_at'] else 'N/A' }}
{% endfor %}
{% else %}

No templates found

Create First Template
{% endif %}
{% endblock %}