{% extends "admin/base.html" %} {% block content %}
{{_("Name")}} | {{_("Slug")}} | {{_("Is Protected")}} | {{_("Is Visible")}} | {{_("Joiners")}} | {{_("Status")}} | |
---|---|---|---|---|---|---|
{{chat_room.name}} | {{chat_room.slug}} | {% if chat_room.is_protected %} {{_("Yes")}} {% else %} {{_("No")}} {% endif %} | {% if chat_room.is_visible %} {{_("Yes")}} {% else %} {{_("No")}} {% endif %} | {{chat_room.users_count}} | {% if chat_room.status == 1 %} {{_("Active")}} {% else %} {{_("Inactive")}} {% endif %} | {{_("Edit")}} {{_("Users")}} {{_("Delete Chats")}} {% if ((SETTINGS['single_room_mode'] != 1) or ((SETTINGS['single_room_mode'] == 1) and (SETTINGS['default_room_slug'] != chat_room.slug))) %} {{_("Delete Room")}} {% endif %} |