{% 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.
{% 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.strftime('%Y-%m-%d %H:%M') if c.started_at else '?' }}
{% if pagination.pages > 1 %} {% endif %} {% else %}

No callers logged yet.

{% endif %} {% endblock %}