{% set page_title = _("Online Users") %} {% extends theme("layout.html") %} {% block header %} {% endblock %} {% block navigation %} {% endblock %} {% block content %} {% trans %}Online Users{% endtrans %} {% for user in online_users %} {% if config["REDIS_ENABLED"] %} {{ user }}{% if not loop.last %}, {% endif %} {% else %} {{ user.username }}{% if not loop.last %}, {% endif %} {% endif %} {% endfor %} {% endblock %}