{% extends "base.html" %} {% block title %}{{ room.name }} - Chat{% endblock %} {% block head %} {% endblock %} {% block content %}

{{ room.name }}

{{ room.description or 'No description' }} {% if room.related_post %}
Related to: {{ room.related_post.title }} {% endif %}
Back to Chats
{% for message in messages %}
{% if message.message_type != 'system' %}
{{ message.user.nickname }} {% if message.user.is_admin %} ADMIN {% endif %} {{ message.created_at.strftime('%H:%M') }}
{% endif %}
{{ message.content }} {% if message.is_edited %} (edited) {% endif %}
{% endfor %}
Press Enter to send • Max 2000 characters
Participants ({{ participants|length }})
{% for participant in participants %}
{{ participant.user.nickname[0].upper() }}
{{ participant.user.nickname }}
{{ participant.role.title() }} {% if participant.user.is_admin %}• Admin{% endif %}
{% endfor %}
{% endblock %}