{# Project: EPT-MX-ADM Company: EasyProTech LLC (www.easypro.tech) Dev: Brabus Date: Thu 23 Oct 2025 22:56:11 UTC Status: Rooms Template Telegram: https://t.me/EasyProTech #} {% extends "base.html" %} {% block title %}{{ t('rooms.title') }}{% endblock %} {% block content %}

{{ t('rooms.title') }} {% if total %} {{ total }} {% endif %}

Search & Filters
{% if total > 0 %} {{ t('pagination.showing') }} {{ ((current_page - 1) * limit + 1) if total > 0 else 0 }}-{{ [current_page * limit, total] | min }} {{ t('pagination.of') }} {{ total }} {% endif %}
{% if rooms_data.rooms %}
{% for room in rooms_data.rooms %}
{% if room.avatar_url %} Room Avatar {% else %}
{% endif %}
{{ room.name or room.canonical_alias or (room.room_id[:20] + '...') }}
{% if room.topic %}
{{ room.topic[:80] }}{% if room.topic|length > 80 %}...{% endif %}
{% endif %}
{{ room.room_id[:30] }}...
{% if room.encrypted %} Encrypted {% endif %} {% if room.federated %} Federated {% endif %} {% if room.in_directory %} Public {% endif %}
{{ room.joined_members or 0 }} Members
{{ room.local_members or 0 }} Local
{{ room.state_events or 0 }} Events
v{{ room.room_version or '1' }} Version
{% if room.creator and room.creator != 'Unknown' %}
Created by: {{ room.creator }}
{% endif %} {% if room.creation_ts %}
{{ room.creation_ts | datetime_format }}
{% endif %}
{% endfor %}
{% else %}
{{ t('rooms.no_rooms') }}
{% if search %}

{{ t('messages.try_different_search') }}

{% endif %}
{% endif %} {% if total > 0 %}
{{ t('pagination.showing') }} {{ ((current_page - 1) * limit + 1) if total > 0 else 0 }} - {{ (current_page * limit) if (current_page * limit) < total else total }} {{ t('pagination.of') }} {{ total }} {{ t('pagination.entries') }}
{% if total_pages > 1 %} {% endif %}
{% endif %}
{% include 'room_details_modal.html' %} {% endblock %} {% block scripts %} {% endblock %}