{% extends "base.html" %} {% block title %}{{ thread_subject }} — Thread{% endblock %} {% block breadcrumbs %} {% endblock %} {% block content %}

{{ thread_subject }}

{{ thread_id }}
{{ message_count }} message{{ 's' if message_count != 1 else '' }}
{% for msg in messages %}
{{ (msg.sender[0] if msg.sender else '?')|upper }}
{{ msg.sender }} {{ msg.created }}
{% if msg.body_md %} {{ msg.body_md|striptags|truncate(150, killwords=False, end='...') }} {% else %} No content {% endif %}
{% if msg.importance == 'urgent' %} Urgent {% elif msg.importance == 'high' %} High {% endif %}
{{ msg.body_html|safe }}
Message #{{ msg.id }}
{% endfor %}

End of conversation

{{ message_count }} message{{ 's' if message_count != 1 else '' }} in this thread

Back to Project
{% endblock %}