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

{{ room.name }}

{% if room.description %}

{{ room.description }}

{% endif %}
{% if room.category %} {{ room.category.title() }} {% endif %} {% if room.related_post %} Linked to Post {% endif %} {{ room.participants.count() if room.participants else 0 }} Members
{% if room.related_post %} {% endif %}
{% for message in messages %}
{% if not message.is_system_message %}
{{ message.sender.nickname }} {% if message.sender.is_admin %} ADMIN {% endif %} • {{ message.created_at.strftime('%H:%M') }}
{% endif %}
{% if message.is_system_message %} {% endif %} {{ message.content }} {% if message.is_edited %} (edited) {% endif %}
{% endfor %}
{% endblock %}