{% extends "base.html" %} {% block title %}QWK Node: {{ node.packet_id }} — {{ config.BBS_NAME }}{% endblock %} {% block content %}

QWK Node: {{ node.packet_id }}

{{ node.name }}{% if node.sysop %} — Sysop: {{ node.sysop }}{% endif %}

Edit Back
{% with messages = get_flashed_messages(with_categories=true) %} {% for cat, msg in messages %}
{{ msg }}
{% endfor %}{% endwith %}
Node Info
Packet ID{{ node.packet_id }}
BBS Name{{ node.name }}
Sysop{{ node.sysop or '—' }}
Email{{ node.email or '—' }}
Status {% if node.is_active %}active {% else %}inactive{% endif %}
Last Poll {% if node.last_poll_at %}{{ node.last_poll_at.strftime('%Y-%m-%d %H:%M UTC') }} {% else %}never polled{% endif %}
Conferences{{ subscriptions|length }}
Download URL:
GET /qwkhub/{{ node.packet_id.lower() }}.qwk
Conference Subscriptions {{ subscriptions|length }} subscribed
{% if subscriptions %} {% for sub in subscriptions %} {% endfor %}
Conf#Area TagNetworkHigh-Water MarkActions
{{ sub.conf_number or '—' }} {{ sub.echo_area.tag }} {{ sub.echo_area.network.name }} {% if sub.last_message_id %}msg #{{ sub.last_message_id }} {% else %}all (no HWM){% endif %}
{% else %}
No conference subscriptions yet.
{% endif %}
Add Conference Subscription
{% endblock %}