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

BBS Directory (Admin)

Add BBS
{% if peers %} {% for p in peers %} {% endfor %}
ActiveNameHostnameFTN OnlineLast PolledError
{% if p.is_active %}on {% else %}off{% endif %} {{ p.name }} {{ p.hostname }}:{{ p.finger_port }} {% if p.ftn_address %}{{ p.ftn_address }}{% endif %} {{ p.online_count or 0 }} {% if p.last_polled_at %} {{ p.last_polled_at.strftime('%Y-%m-%d %H:%M:%S') }} {% else %}—{% endif %} {{ (p.last_error or '')[:60] }}
{% else %}
No peers registered. Add some above.
{% endif %}
{% endblock %}