{% extends 'base.html' %}{% load static %} {% block title %}{{ room.name }} — Unity Nation{% endblock %} {% block content %}
💬
{{ room.name }}
{{ room.description|default:"Community chat room" }}
All Rooms
{% for msg in messages %}
{{ msg.sender.username|first|upper }}
{{ msg.sender.username }}
{{ msg.content }}
{{ msg.created_at|date:"M d, H:i" }}
{% empty %}
👋

No messages yet. Say hello and start the conversation!

{% endfor %}
{% csrf_token %}
{% endblock %}