{% extends "base.html" %} {% block title %}Post Discussions - Chat Rooms{% endblock %} {% block content %}

Post Discussions

Chat rooms linked to community posts

All Chats Post Discussions Create Room

{{ total_discussions }}

Total Post Discussions

{{ active_discussions }}

Active This Week

{% if rooms.items %}
{% for room in rooms.items %}

{{ room.name }}

{% if room.description %}

{{ room.description }}

{% endif %}
{{ room.message_count or 0 }} messages
{% if room.related_post %}

Discussing Post:

{{ room.related_post.title }}

by {{ room.related_post.author.nickname }} • {{ room.related_post.created_at.strftime('%B %d, %Y') }}

{% endif %}
Created by {{ room.created_by.nickname }} {{ room.participants.count() }} members {% if room.last_activity %} Last activity {{ room.last_activity.strftime('%m/%d/%Y at %I:%M %p') }} {% else %} No recent activity {% endif %} {% if room.is_private %} Private {% endif %}
Join Discussion {% if room.related_post %} View Post {% endif %}
{% endfor %}
{% if rooms.pages > 1 %}
{% if rooms.has_prev %} {% endif %} {% for page_num in rooms.iter_pages() %} {% if page_num %} {% if page_num != rooms.page %} {{ page_num }} {% else %} {{ page_num }} {% endif %} {% else %} ... {% endif %} {% endfor %} {% if rooms.has_next %} {% endif %}
{% endif %} {% else %}

No post discussions yet

Create the first chat room linked to a community post!

Create Post Discussion
{% endif %}
{% endblock %}