{% extends "base.html" %} {% block title %}ANSI Screens{% endblock %} {% block content %}

Login / Logoff ANSI Screens

These are the raw CP437/ANSI screens shown by the telnet/SSH/rlogin BBS at lifecycle events. Welcome is shown to telnet visitors before they log in; auto-login SSH/rlogin clients skip it. Goodbye appears on logoff for everyone.

New screen / slot Back to menus
{% if missing_builtins %}
Built-in slots not yet configured
{% endif %} {% if rows %} {% for r in rows %} {% endfor %}
SlotTitleActivePauseUpdated
{{ r.slot }} {% if r.slot in ('welcome','goodbye','newuser') %} built-in {% endif %} {{ r.title or '' }} {% if r.is_active %}{% else %}{% endif %} {% if r.pause_after %}wait Enter{% endif %} {{ r.updated_at.strftime('%Y-%m-%d %H:%M') if r.updated_at else '' }}
{% else %}

No screens defined yet.

{% endif %} {% endblock %}