{% extends "base.html" %} {% block title %}Echo Areas โ€” {{ config.BBS_NAME }}{% endblock %} {% block content %}

Echo Areas

Dashboard
Bad Areas Bulk Import Add Area
{% with messages = get_flashed_messages(with_categories=true) %} {% for cat, msg in messages %} {% endfor %} {% endwith %} {% if networks %}
{% for net in networks %} {% set s = stats[net.id] %}
{% if net.network_type == 'binkp' %} BinkP {% else %} QWK {% endif %} {{ net.name }} {% if net.is_active %} Active {% else %} Inactive {% endif %}
{% if net.network_type == 'binkp' %}
{% if net.our_address %}{{ net.our_address }}{% endif %} {% if net.hub_address %} โ†’ {{ net.hub_address }}{% endif %}
{% else %}
Hub ID: {{ net.qwk_hub_id or 'โ€”' }} {% if net.qwk_host %} ยท {{ net.qwk_host }}{% endif %}
{% endif %}
{{ s.total }}
Total
{{ s.active }}
Active
{{ s.subscribed }}
Subscribed
{% if s.sysop_only %}
{{ s.sysop_only }} sysop-only area{% if s.sysop_only != 1 %}s{% endif %}
{% endif %}
{% endfor %}
{% else %}
No echomail networks configured yet. Add a network to get started.
{% endif %} {% endblock %}