{% extends "admin/base.html" %} {% block title %}Manage Chats - Admin{% endblock %} {% block admin_content %}

Manage Chat Rooms

Total Rooms
{{ total_rooms }}
Linked to Posts
{{ linked_rooms }}
Active Today
{{ active_today }}
Total Messages
{{ total_messages }}
Chat Rooms
{% if chat_rooms %}
{% for room in chat_rooms %} {% endfor %}
Room Name Category Created By Linked Post Messages Last Activity Actions
{{ room.name }} {% if room.description %}
{{ room.description[:100] }}{% if room.description|length > 100 %}...{% endif %}
{% endif %}
{{ room.category.title() if room.category else 'Uncategorized' }} {{ room.created_by.nickname }} {% if room.related_post %} {{ room.related_post.title[:30] }}{% if room.related_post.title|length > 30 %}...{% endif %} {% else %} Not linked {% endif %} {{ room.message_count or 0 }} {% if room.last_activity %} {{ room.last_activity.strftime('%Y-%m-%d %H:%M') }} {% else %} Never {% endif %}
{% if pagination %} {% endif %} {% else %}
No chat rooms found

Create a new room or adjust your filters.

{% endif %}
{% endblock %}