{% extends "base.html" %} {% block title %}Who's Online{% endblock %} {% block content %}
{{ total }} logged-in user{% if total != 1 %}s{% endif %} across all protocols.
| User | Protocol | Where | {% if current_user.is_authenticated and current_user.is_admin %}IP | {% endif %}Last 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 %} | {% if current_user.is_authenticated and current_user.is_admin %}{{ r.ip }} |
{% endif %}
{{ r.last_seen.strftime('%H:%M:%S') }} |