{% extends "app.html" %} {% comment %} # SPDX-License-Identifier: AGPL-3.0-or-later {% endcomment %} {% load i18n %} {% load static %} {% block page_js %} {% endblock %} {% block status %} {{ block.super }}

{% trans "Status" %}

{% blocktrans trimmed %} The Matrix server domain is set to {{ domain_name }}. User IDs will look like @username:{{ domain_name }}. Changing the domain name after the initial setup is currently not supported. {% endblocktrans %}

{% blocktrans trimmed %} New users can be registered from any client if public registration is enabled. {% endblocktrans %}

{% if config.public_registration and config.registration_verification == 'token' and registration_tokens %}

{% blocktrans trimmed %} New users must use one of the following tokens for verification during account registration: {% endblocktrans %}

{% for token in registration_tokens %} {% endfor %}
{% trans "Registration Token" %} {% trans "Uses Allowed" %} {% trans "Pending Registrations" %} {% trans "Completed Registrations" %} {% trans "Expiry Time" %}
{{ token.token }} {% if token.uses_allowed is None %} {% trans "Unlimited" %} {% else %} {{ token.uses_allowed }} {% endif %} {{ token.pending }} {{ token.completed }} {% if token.expiry_time %} {{ token.expiry_time|date:"DATETIME_FORMAT" }} {% else %} {% trans "None" %} {% endif %}
{% endif %} {% if certificate_status != "valid" %} {% endif %} {% endblock %}