{% set page_title = _("Online Users") %}
{% extends theme("layout.html") %}
{% block navigation %}
{% endblock %}
{% block content %}
{% 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 %}