{% extends "mailing_list/mailing_list.html" %} {% block page_title %}{{ thread.title }} - {{ list_address }}{% endblock %} {% block content %}
{{ thread.title }}
#{{ thread.id }} - Created {{ thread.datetime|ago }}
{% for email in emails %}
{{ email.from[0] }} <{{ email.from[1] }}> {{ email.received_at|ago }}
Message-ID: {{ email.id }}
{% if email.in_reply_to %}
In-Reply-To: {{ email.in_reply_to }}
{% endif %}
Subject: {{ email.subject }}
{{ email.body }}
{% endfor %}
{% for tag in tags %}
{{ tag }}: {{ tags[tag]|join(', ') }}
{% endfor %}
{{ participants|length }} participants {% for address in participants %} {{ address[0] }} <{{ address[1] }}> {% endfor %}
{% endblock %}