{% extends "base.html" %} {% block title %}File Bulletins - Admin{% endblock %} {% block content %}

File Bulletins

Real .txt/.asc/.ans files dropped into {{ bulletins_dir }} — including score/news files a door game writes out itself — are auto-detected here (disabled by default) every time this page loads. Enable the ones you want visible; each shows in the terminal's ANSI/File Bulletins menu, viewed through the same scrollable ANSI-aware reader used for messages. This is separate from the sysop-authored text Bulletins menu.

{% if rows %}
{% for row in rows %} {% endfor %}
Sort Title File Min Level Active Actions
{{ row.sort_order }} {{ row.title }} {{ row.filename }} {% if row.filename not in on_disk %} missing {% endif %} {{ row.min_access_level }}
Edit
{% else %}

No files found yet — drop a .txt/.asc/.ans file into {{ bulletins_dir }} and reload this page.

{% endif %} {% endblock %}