{% extends "base.html" %} {% block title %}Thread: {{ seed.subject or '(no subject)' }}{% endblock %} {% block content %}

Thread

{{ echo_area.tag }} — {{ messages|length }} message{% if messages|length != 1 %}s{% endif %}

← Back to {{ echo_area.tag }}
{% for m in messages %}
{{ m.from_name }}{{ m.to_name or 'All' }} {% if m == seed %}selected{% endif %} {% if m.id == messages[0].id and m._depth == 0 %}root{% endif %} {{ m.created_at.strftime('%Y-%m-%d %H:%M') }}
{{ m.subject or '(no subject)' }}
{{ (m.body[:600] if m.body else '') | msgbody(m.chrs) }}{% if m.body and m.body|length > 600 %}...{% endif %}
{% endfor %} {% endblock %}