{{ 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 %}
{{ people[msg.personId].displayName }}{{ msg.created|datetime_format(timestamp_format) }}
{% if msg.html %}
{{ msg.html }}
{% else %}
{{ msg.text|e|replace("\n", "
") }}
{% endif %} {% if msg.files %} {% endif %}
{% endfor %}