{% extends "base.html" %} {% block title %}BinkP Hub Nodes — {{ config.BBS_NAME }}{% endblock %} {% block content %}

BinkP Hub Nodes

Downstream FidoNet/BinkP nodes that receive echomail from this hub.

Add Node Hub Overview
{% with messages = get_flashed_messages(with_categories=true) %} {% for cat, msg in messages %}
{{ msg }}
{% endfor %}{% endwith %}
{% if nodes %} {% for node in nodes %} {% endfor %}
FTN Address Name Sysop Areas Pending Status Last Seen
{{ node.ftn_address }} {{ node.name }} {{ node.sysop or '—' }} {{ node.subscriptions.count() }} {{ node.hold_queue.filter_by(status='pending').count() }} {% if node.is_active %}active {% else %}inactive{% endif %} {% if node.last_seen_at %}{{ node.last_seen_at.strftime('%Y-%m-%d %H:%M') }} {% else %}never{% endif %} Edit
{% else %}

No BinkP downstream nodes registered yet.

Add the first node
{% endif %}
{% endblock %}