{% extends "base.html" %} {% block title %}TIC Out Log - Admin{% endblock %} {% block content %}

TIC Out Log

Outbound FidoNet file-echo deliveries — files hatched here or received via TIC and re-distributed to subscribed peers.

TIC In Log Hub Admin
All Pending Sent Failed
{% for h in pagination.items %} {% else %} {% endfor %}
QueuedStatusAreaFile PeerSizeRetriesSent / Last Error
{{ h.queued_at|eastern('%Y-%m-%d %H:%M') }} {% if h.status == 'sent' %}sent {% elif h.status == 'failed' %}failed {% elif h.status == 'pending' %}pending {% else %}{{ h.status }}{% endif %} {{ h.file_area.tag if h.file_area else '?' }} {{ h.filename or '?' }} {{ h.peer_address or '' }} {{ h.size_bytes or 0 }} {{ h.retry_count or 0 }} {% if h.status == 'sent' %} {{ h.sent_at|eastern('%Y-%m-%d %H:%M', '') }} {% elif h.error_message %} {{ h.error_message }} {% endif %}
No outbound TIC activity yet.
{% if pagination.pages > 1 %} {% endif %} {% endblock %}