{% extends "base.html" %} {% block title %}Bulk Import Areas — {{ config.BBS_NAME }}{% endblock %} {% block content %}

Bulk Import Echo Areas

Back to Areas
Import from Echolist or Backbone File

One area per line. Both forms are accepted:

FIDO_GENERAL    General Discussion
TQW_BBSGEN      - General BBS Chat        (FidoNet backbone style)

Lines starting with ; or # are skipped. Leading - on the description is stripped automatically, so tqwnet.na, BACKBONE.NA and FILEBONE.NA-style files import cleanly.

{{ form.hidden_tag() }}
{{ form.network_id.label(class="form-label") }} {{ form.network_id(class="form-control") }} {% for e in form.network_id.errors %}
{{ e }}
{% endfor %}
{{ form.backbone_file.label(class="form-label") }} {{ form.backbone_file(class="form-control") }} {% for e in form.backbone_file.errors %}
{{ e }}
{% endfor %}
{{ form.echolist.label(class="form-label") }} {{ form.echolist(class="form-control", rows=18, style="font-family:'Courier New',monospace; font-size:0.85rem;", placeholder="TQW_ADS - BBS Adverts\nTQW_BBSGEN - General BBS Chat\nTQW_GEN - General Chat") }} {% for e in form.echolist.errors %}
{{ e }}
{% endfor %}
{{ form.is_subscribed(class="form-check-input") }} {{ form.is_subscribed.label(class="form-check-label small") }}
Cancel {{ form.submit(class="btn btn-primary") }}
{% endblock %}