{% extends "base.html" %} {% block title %}Nodelist Browser - {{ config.BBS_NAME }}{% endblock %} {% block content %}

Nodelist Browser

Search the FidoNet network directory.

{% if nodelists %}
Imported Nodelists
{% for nl in nodelists %} {% endfor %}
DomainFilenameDayReleased EntriesImported
{{ nl.domain }} {{ nl.filename }} {{ nl.day_of_year }} {{ nl.release_date }} {{ nl.entry_count }} {{ nl.imported_at.strftime('%Y-%m-%d %H:%M') }}
{% else %}
No nodelists imported yet. {% if current_user.is_admin %} Upload one. {% else %} Ask the sysop to import a nodelist. {% endif %}
{% endif %} {% if q %}
Search Results ({{ entries|length }} match{{ '' if entries|length == 1 else 'es' }})
{% if entries %} {% for e in entries %} {% endfor %}
AddressSystemSysop LocationType
{{ e.address }} {{ e.system_name }} {{ e.sysop_name }} {{ e.location }} {% if e.keyword_type %}{{ e.keyword_type }}{% endif %}
{% else %}
No matches.
{% endif %}
{% endif %} {% if current_user.is_admin %}
Import / Replace Nodelist Bulk Import from Directory
{% endif %} {% endblock %}