{% extends "base.html" %} {% block title %}Caller Log{% endblock %} {% block content %}

Caller Log

Recent connections across all protocols.

{% if pagination.items %} {% for c in pagination.items %} {% endfor %}
WhenUserServiceIPDuration
{{ c.started_at.strftime('%Y-%m-%d %H:%M:%S') }} {{ c.username or '?' }} {{ c.service }} {{ c.ip_address or '' }} {% if c.duration_seconds %}{{ c.duration_seconds }}s{% else %}—{% endif %}
{% else %}
No callers logged yet.
{% endif %}
{% if pagination.pages > 1 %} {% endif %} {% endblock %}