{% extends "base.html" %} {% block title %}BBS Directory{% endblock %} {% block content %}

BBS Directory

Known peer BBSes — click any to see who's currently online there.

{% if peers %} {% for p in peers %} {% endfor %}
BBSHostFTNOnlineUpdated
{{ p.name }} {% if p.description %}
{{ p.description }}
{% endif %}
{{ p.hostname }}{% if p.finger_port and p.finger_port != 79 %}:{{ p.finger_port }}{% endif %} {% if p.ftn_address %}{{ p.ftn_address }}{% endif %} {% if p.online_count %} {{ p.online_count }} {% elif p.last_error %} err {% else %} 0 {% endif %} {% if p.last_polled_at %}{{ p.last_polled_at.strftime('%H:%M:%S') }}{% else %}—{% endif %}
{% else %}
No peer BBSes registered yet. {% if current_user.is_admin %} Add some. {% else %} Ask the sysop to register some. {% endif %}
{% endif %}
{% if current_user.is_admin %}
Manage BBS Directory
{% endif %} {% endblock %}