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