{% extends "base.html" %} {% block title %}Dial-Out Directory{% endblock %} {% block content %}

Dial-Out Directory

BBSes that show up in the user's "Dial Out" menu (telnet/SSH/rlogin out).

Add Destination
{% if rows %} {% for r in rows %} {% endfor %}
OnSortNameHost ProtoDescription
{% if r.is_active %}on{% else %}off{% endif %} {{ r.sort_order }} {{ r.name }} {{ r.hostname }}:{{ r.port }} {{ r.protocol }} {{ r.description or '' }}
{% else %}
No destinations yet — defaults will be shown to users.
{% endif %}
{% endblock %}