ActivityMemoryAutonomyFinanceIdentitySystemSettings
{# Multitenant-only links hide in single-user. An explicitly-passed
`is_multitenant` wins; pages that don't pass it fall back to the
posture SSOT via the `is_multitenant_posture` Jinja global (P0-3 —
undefined used to mean "shown", leaking Profile/Sign In into
local/own_ops on the server.py-rendered pages). #}
{% set _show_tenant = is_multitenant if is_multitenant is defined else is_multitenant_posture() %}
{% if _show_tenant %}
Profile
{% if is_admin %}
Admin
{% endif %}
{% if is_authenticated %}
Logout
{% else %}
Sign In
{% endif %}
{% endif %}