{% extends "base.html" %} {% block title %}Netmail {{ folder|capitalize }} - {{ config.BBS_NAME }}{% endblock %} {% block content %}

Netmail {{ folder|capitalize }}

Inbox Sent Drafts Compose Address Book
{% if messages %} {% for m in messages %} {% endfor %}
{% if folder == 'inbox' %}From{% else %}To{% endif %} Address Subject Status Date
{% if folder == 'drafts' %} {{ m.to_name }} {% else %} {% if folder == 'inbox' %}{{ m.from_name }}{% else %}{{ m.to_name }}{% endif %} {% endif %} {% if folder == 'inbox' %}{{ m.from_address }}{% else %}{{ m.to_address }}{% endif %} {{ m.subject or '(no subject)' }} {% if m.is_crash %}CRASH{% endif %} {% if m.is_private %}PVT{% endif %} {{ m.status }} {{ m.created_at.strftime('%Y-%m-%d %H:%M') }}
{% else %}
No netmail in {{ folder }}.
{% endif %}
{% endblock %}