{{ room.title|e }}

Created by {{ room_creator.displayName }} on {{ room.created|datetime_format(timestamp_format) }}{% if room.lastActivity %} and last had activity on {{ room.lastActivity|datetime_format(timestamp_format) }}{% endif %}.
{% for msg in messages %} {% if not msg.parentId %}
{{ people.get(msg.personId, {'displayName': 'Person Not Found'}).displayName }} {{ msg.created|datetime_format(timestamp_format) }}
{% if msg.html %}
{{ msg.html }}
{% else %}
{{ msg.text|e|replace("\n", "
") }}
{% endif %} {% if msg.files %} {% endif %}
{% if msg.id in threads and threads[msg.id]|length > 0 %} {% for reply in threads[msg.id] %}
{{ people.get(reply.personId, {'displayName': 'Person Not Found'}).displayName }} {{ reply.created|datetime_format(timestamp_format) }}
{% if reply.html %}
{{ reply.html }}
{% else %}
{{ reply.text|e|replace("\n", "
") }}
{% endif %} {% if reply.files %} {% endif %}
{% endfor %} {% endif %} {% endif %} {% endfor %}