{% extends "base.html" %} {% block title %}Echomail Networks — {{ config.BBS_NAME }}{% endblock %} {% block extra_css %} {% endblock %} {% block content %}

Echomail Networks

FidoNet / QWK networked message areas — choose a network

QWK Netmail Compose Netmail
{% with messages = get_flashed_messages(with_categories=true) %} {% for cat, msg in messages %} {% endfor %} {% endwith %} {% if network_list %}
{% for item in network_list %} {% set net = item.network %}
{% if net.network_type == 'binkp' %} BinkP {% else %} QWK {% endif %} {{ net.name }} {% if item.total_unread %} {{ item.total_unread }} new {% endif %}
{% if net.description %}

{{ net.description|truncate(100) }}

{% endif %}
{{ item.area_count }}
area{% if item.area_count != 1 %}s{% endif %}
{% if net.network_type == 'binkp' and net.hub_address %}
{{ net.hub_address }}
{% elif net.network_type == 'qwk' and net.qwk_hub_id %}
Hub: {{ net.qwk_hub_id }}
{% endif %}
{% endfor %}
{% else %}

No echomail networks are currently available.

{% if current_user.is_admin %} Configure Echomail {% endif %}
{% endif %} {% endblock %}