{% extends "base.html" %} {% block content %}

Communications

Phase A+: The app does not send emails. Instead, it generates editable draft messages from saved assignments so staff can copy/paste or download packets.
Editable Templates
Controls which recipients are included when generating drafts and downloads.
Tip: Use the token buttons below to insert merge fields (e.g., mentor name, mentee needs).

Token picker
{% for tok in allowed_tokens %} {% endfor %}
New template name
Preview
{% if preview_ready %}
To: {{ preview_to }}
CC: {{ preview_cc }}
Subject: {{ preview_subject }}
{{ preview_body }}
{% else %}
Click Preview to render this template using the first locked match (if any). If there are no locked matches yet, a sample preview is shown.
{% endif %}
Generate Drafts

Downloads generate drafts for locked assignments only and exclude archived mentors/mentees.

{% if selected_template %} {% else %}
No templates found.
{% endif %}
{% endblock %}