{% extends "base.html" %} {% block title %}{{ entry.address }} - Nodelist{% endblock %} {% block content %}

{{ entry.system_name or entry.address }}

{{ entry.address }} — {{ entry.location }}

System Info
Address
{{ entry.address }}
System
{{ entry.system_name or '—' }}
Sysop
{{ entry.sysop_name or '—' }}
Location
{{ entry.location or '—' }}
Phone
{{ entry.phone or '—' }}
Baud
{{ entry.baud_rate or '—' }}
Type
{% if entry.keyword_type %} {{ entry.keyword_type }} {% else %} Plain Node {% endif %}
{% if flags %}
Flags
{% for k, v in flags.items() %}
{{ k }}{% if v is not sameas true %}: {{ v }}{% endif %}
{% endfor %}
{% endif %}
Back to Browse {# Send-netmail-to-sysop. Pre-fills the To Address + To Name via the existing /netmail/compose querystring contract. The compose route auto-picks the FROM AKA that matches entry.zone, so the sysop's new node address (e.g. 1337:3/231 for TQWnet entries) is selected automatically. Falls back to "Sysop" if the nodelist row has no sysop name (rare but happens on placeholder Down entries). #} Send Netmail to Sysop
{% endblock %}