{% extends "admin/base.html" %} {% block content %}
{{_("Chat Room List",2)}}
{{_("Add New Chat Room",2)}}
{% for chat_room in chat_rooms %} {% endfor %}
{{_("Name",2)}} {{_("Slug",2)}} {{_("Is Protected",2)}} {{_("Is Visible",2)}} {{_("Guest View",2)}} {{_("Joiners",2)}} {{_("Status",2)}}
{{chat_room.name}} {{chat_room.slug}} {% if chat_room.is_protected %} {{_("Yes",2)}} {% else %} {{_("No",2)}} {% endif %} {% if chat_room.is_visible %} {{_("Yes",2)}} {% else %} {{_("No",2)}} {% endif %} {% if chat_room.allow_guest_view %} {{_("Yes",2)}} {% else %} {{_("No",2)}} {% endif %} {{chat_room.users_count}} {% if chat_room.status == 1 %} {{_("Active",2)}} {% else %} {{_("Inactive",2)}} {% endif %} {{_("Edit",2)}} {{_("Users",2)}} {{_("Delete Chats",2)}} {% if ((SETTINGS['single_room_mode'] != 1) or ((SETTINGS['single_room_mode'] == 1) and (SETTINGS['default_room_slug'] != chat_room.slug))) %} {{_("Delete Room",2)}} {% endif %}
{% endblock %}