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

{{ net.name }} {% if net.network_type == 'binkp' %} BinkP {% else %} QWK {% 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 %} {% if total_unread %}  · {{ total_unread }} unread {% endif %}

Networks Netmail
{% with messages = get_flashed_messages(with_categories=true) %} {% for cat, msg in messages %} {% endfor %} {% endwith %} {% if groups %} {% for category, area_list in groups.items() %}
{{ category }} ({{ area_list|length }} area{% if area_list|length != 1 %}s{% endif %})
{% for area, unread in area_list %}
{{ area.name }} {% if unread > 0 %} {{ unread }} new {% endif %}
{% if area.description %}

{{ area.description|truncate(90) }}

{% endif %}
{{ area.total_messages or 0 }} msgs {% if area.last_message_at %} {{ area.last_message_at.strftime('%Y-%m-%d') }} {% endif %} {{ area.tag }}
{% endfor %}
{% endfor %} {% else %}

No areas available in this network.

{% if current_user.is_admin %} Manage Areas {% endif %}
{% endif %} {% endblock %}