{% extends "base.html" %} {% block title %}{{ t('spaces.title') }}{% endblock %} {% block content %}

{{ t('spaces.title') }} {% if spaces_data.total_spaces %} {{ spaces_data.total_spaces }} {% endif %}

Filters & Search
{% if search %} {{ t('forms.clear') }} {% endif %}
{% if spaces_data.rooms %}
{% for space in spaces_data.rooms %}
{% if space.avatar_url %} Space Avatar {% else %}
{% endif %}
{{ space.name or space.canonical_alias or 'Unnamed Space' }}
{{ space.room_id }}
{% if space.public %} Public {% else %} Private {% endif %}
{% if space.topic %}
{{ space.topic }}
{% endif %} {% if space.creation_ts %}
{{ space.creation_ts | datetime_format }}
{% endif %}
{{ space.joined_members or 0 }} members
{{ space.children_count or 0 }} children
{% endfor %}
{% else %}
{{ t('spaces.no_spaces', default='No spaces found') }}
{% if search %}

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

{{ t('forms.show_all') }} {% else %}

{{ t('spaces.create_first', default='Create the first space to organize rooms') }}

{% 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 %}
{% endblock %} {% block scripts %} {% endblock %}