{% extends "base.html" %} {% block title %}Setup Banner — {{ config.INSTANCE_NAME }}{% endblock %} {% block content %}

Setup Page Banner

Shown above the bootstrap commands on /setup. Use it for org-specific notes: VPN requirements, support channel, data classification, platform prerequisites. Empty by default — no banner is shown when unset.

{% if is_override %} Banner active {% else %} No banner {% endif %}

Author HTML or plain text with Jinja2 placeholders. The banner renders inside the /setup page — HTML tags are allowed. Leave empty and click Remove banner to go back to no banner. {{ "{{ user }}" }} may be null for anonymous visitors — guard with {% if user %}.

Available placeholders
{{ "{{ instance.name }}" }} — instance display name {{ "{{ instance.subtitle }}" }} — operator name {{ "{{ server.url }}" }} — full server URL {{ "{{ server.hostname }}" }} — host part only {{ "{{ user.email }}" }}, {{ "{{ user.name }}" }}, {{ "{{ user.is_admin }}" }} — null for anonymous visitors; guard with {% if user %} {{ "{{ now }}" }}, {{ "{{ today }}" }}

Live preview

{% endblock %}