{% extends "base.html" %} {% block title %}Bulk Import Nodelists{% endblock %} {% block content %}

Bulk Import Nodelists

Scan a directory for nodelist files / ZIP archives and import the ones you want. Inspired by Codefenix's NetLister for Synchronet.

Scan directory
Defaults to NODELIST_SCAN_DIR from app config, or data/nodelists.
{% if candidates %}
{% if csrf_token is defined %}{% endif %}
{{ candidates|length }} candidate file{{ '' if candidates|length == 1 else 's' }} in {{ scan_dir }}
{% for c in candidates %} {% endfor %}
File Size Domain (leave blank to skip)
{{ c.name }} {{ '{:,}'.format(c.size) }} bytes
Cancel
{% elif scan_dir %}
No nodelist-shaped files found in {{ scan_dir }}. Try a different path, or upload one directly via single upload.
{% endif %} {% endblock %}