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

{{ thread.title }}

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

{{ mail.subject }}

From:
{{ mail.author_name or mail.author_email }}
Date:
{{ mail.date.strftime('%Y-%m-%d @ %H:%M') }}
{{ mail.rendered_text }}
{% if mail.children %}
{{ loop(mail.children) }}
{% endif %}
{% endfor %} {% endblock %}