{% extends "base.html" %} {% block title %}BBS Menus{% endblock %} {% block content %}

BBS Menus

Data-driven menus shown to users on telnet/SSH/rlogin. The menu named main is the entry point after login. If no menus exist the hard-coded fallback is used.

New menu ANSI screens (welcome / goodbye) {% if menus|length > 0 %}
{% endif %} {% if menus|length == 0 %}
{% endif %}
{% if roots %}
Menu tree (entry points → submenus)
{% endif %}

All menus

{% for m in menus %} {% else %} {% endfor %}
NameTitleItemsDefault?Min access
{{ m.name }} {{ m.title }} {{ m.items.count() }} {% if m.is_default %}✓{% endif %} {{ m.min_access }}
No menus yet — click "Seed default 'main' menu" or "New menu".
{% endblock %}