{% extends "base.html" %} {% load gravatar %} {% load hk_generic %} {% load storm %} {% block title %} {{ subject }} - {{ mlist.display_name|default:mlist.name|escapeemail }} - {{ app_name|title }} {% endblock %} {% block content %}
{% include 'threads/month_list.html' %}
{% for thread in neighbors %} {% if thread %} {{ thread.subject|strip_subject:mlist|truncatesmart:"22" }} {% endif %} {% endfor %}

{{ subject }}

{% include 'messages/message.html' with email=first_mail unfolded='True' %}

{% if sort_mode == "date" %} Show replies by thread {% else %} Show replies by date {% endif %}

{% for email in replies %}
{% include 'messages/message.html' %}
{% endfor %}
{% include 'threads/right_col.html' %}
{% endblock %} {% block additionaljs %} {% endblock %} {# vim: set noet: #}