Scan Roots
{% if setup.scan_roots %}
{% for root in setup.scan_roots %}
{% set all_ok = root.exists and root.is_dir and root.readable %}
{% if all_ok %}✓{% elif root.exists %}!{% else %}✗{% endif %}
{{ root.path }}
{% if not root.exists %}
not found
{% elif not root.is_dir %}
not a directory
{% elif not root.readable %}
not readable
{% else %}
accessible
{% endif %}
{% endfor %}
{% else %}
No scan roots configured yet.
{% endif %}
{# ── First-run configuration form ─────────────────────────── #}