{% extends "base.html" %} {% block title %}Netmail — {{ config.BBS_NAME }}{% endblock %} {% block content %}
| From | To | Subject | Date | Direction |
|---|---|---|---|---|
| {{ m.from_name }} | {{ m.to_name }}{% if m.to_address %} <{{ m.to_address }}>{% endif %} | {{ m.subject }} | {{ m.created_at.strftime('%Y-%m-%d %H:%M') }} | {% if m.direction == 'netmail' %} {% if m.sent_at %} sent {% else %} queued {% endif %} {% else %} inbound {% endif %} |