{% set page_title = "Online Users" %} {% extends "layout.html" %} {% block content %} Online Users {% for user in online_users %} {% if config["USE_REDIS"] %} {{ user }}{% if not loop.last %}, {% endif %} {% else %} {{ user.username }}{% if not loop.last %}, {% endif %} {% endif %} {% endfor %} {% endblock %}