{% extends "base.html" %} {% block title %}Last Callers Admin{% endblock %} {% block content %}

Last Callers

InterBBS Sharing
BinkP networks only — QWK areas are identified by conference number, not by name, so a QWK network can never carry the InterBBS Last Callers data area. Only service (telnet/ssh/web/...) and login time are shared — IP addresses are never relayed across BBS boundaries.

Display
Keeps a frequently-logged-in sysop from flooding the user-facing Last Callers list (terminal screen, terminal inline block, and the web one-liners page) — this admin list below always shows everything regardless of this setting. Also keeps sysop logins from being relayed to InterBBS Last Callers above, so testing heavily on your own account doesn't flood every other BBS on the network with your logins too.
How many entries the terminal Last Callers screen shows. Does not affect this admin list, or the web one-liners page's "Last 10" preview.
{% if pagination.items %}
{% for c in pagination.items %} {% endfor %}
# User Service Source When
{{ c.id }} {{ c.username or '?' }} {{ c.service or '?' }} {% if c.origin_bbs %}{{ c.origin_bbs }}{% else %}local{% endif %} {{ c.started_at|eastern('%Y-%m-%d %H:%M', '?') }} {% if not c.origin_bbs %}View Activity{% endif %}
{% if pagination.pages > 1 %} {% endif %} {% else %}

No callers logged yet.

{% endif %} {% endblock %}