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