{% extends "mailinglist/layout.html" %} {% block title %}{{ thread.title }}{% endblock %} {% block head %} {{ super() }} {% endblock %} {% block body %}

« back to archive

{{ thread.title }}

{% for mail in [thread.root] recursive %}

{{ mail.subject }}

From:
{{ mail.author_name or mail.author_email }}
Date:
{{ mail.date|datetimeformat }}
{{ mail.rendered_text() }}
{% if mail.children %}
{{ loop(mail.children) }}
{% endif %}
{% endfor %} {% endblock %}