{% extends "base.html" %} {% block title %}AreaFix Log — {{ config.BBS_NAME }}{% endblock %} {% block content %}

AreaFix Log

Audit trail of AreaFix subscription/unsubscription requests — both inbound (other nodes asking us to add areas) and outbound (us asking a hub to add areas).

Echomail Dashboard
{% if not rows %}
No AreaFix activity yet. Use the Send AreaFix Request panel on the Areas page to trigger one.
{% else %} {% for row in rows %} {% endfor %}
Time Network From Type Tags Result Response
{{ row.created_at.strftime('%Y-%m-%d %H:%M') if row.created_at else '' }} {{ networks[row.network_id].name if row.network_id in networks else '?' }} {{ row.from_address or '' }} {{ row.request_type }} {{ row.area_tags or '' }} {% if row.success %} OK {% else %} FAIL {% endif %}
{{ (row.response or '')[:300] }}
{% if pagination and pagination.pages > 1 %} {% endif %} {% endif %}
{% endblock %}