{% extends "base.html" %} {% block title %}Who's Online{% endblock %} {% block content %}

Who's Online

{{ total }} logged-in user{% if total != 1 %}s{% endif %} across all protocols.

{% if counts %}
{% for proto, n in counts.items() %} {{ proto }}: {{ n }} {% endfor %}
{% endif %}
{% if rows %} {% if current_user.is_authenticated and current_user.is_admin %}{% endif %} {% for r in rows %} {% if current_user.is_authenticated and current_user.is_admin %} {% endif %} {% endfor %}
UserProtocolWhereIPLast Seen
{{ r.user.username }} {% if r.user.is_admin %}sysop{% endif %} {{ r.protocol }} {% if current_user.is_authenticated and current_user.is_admin %} {{ r.where or '—' }} {% else %} {{ r.where_label }} {% endif %} {{ r.ip }}{{ r.last_seen.strftime('%H:%M:%S') }}
{% else %}
No one is online right now.
{% endif %}
{% endblock %}