{% extends "admin/base.html" %} {% block title %}Manage Chats - Admin{% endblock %} {% block admin_content %}
| 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 %} |
|
Create a new room or adjust your filters.