{% extends "base.html" %} {% load humanize %} {% block title %} Discussion Rooms {% endblock title %} {% block description %} Join or create discussion rooms to collaborate with others on projects, bugs, and organizations. {% endblock description %} {% block keywords %} discussion rooms, chat, collaboration, project discussion, bug discussion, organization discussion {% endblock keywords %} {% block og_title %} Discussion Rooms - Collaborate and Chat {% endblock og_title %} {% block og_description %} Join or create discussion rooms to collaborate with others on projects, bugs, and organizations. Real-time chat and discussion platform. {% endblock og_description %} {% block content %} {% include "includes/sidenav.html" %}
{% include "includes/breadcrumbs.html" %}

Discussion Rooms

Connecting...
{% for room in rooms %}

{{ room.name }}

{{ room.messages.count }} messages

{{ room.description|default:"No description" }}

{% for message in room.recent_messages %}

{{ message.username }}

{{ message.content }}

{{ message.timestamp|naturaltime }}
{% endfor %}
View Full Chat {% if request.user == room.admin %}
{% csrf_token %}
{% endif %}
{% empty %}

No chat rooms available.

{% endfor %}
{% if is_paginated %}
{% endif %}
Create New Room
{% endblock content %} {% block extra_js %} {% endblock extra_js %}