{% extends "base.html" %}
{% block title %}{{ tr("Settings") }} ยท clear-record{% endblock %}
{% block body %}
{# Settings is the control plane (ADR-0027): one section at a time, each a real
URL, read often and configured occasionally. The sidebar is section
navigation; the content pane is #detail, the same in-page swap target the
project fragments use. Only Agent, MCP and the Models download write; every
other section shows the value plus the config path a user would edit. The slug -> template
mapping lives once, in SETTINGS_SECTIONS (web/app.py); this page includes the
active section's partial rather than switching on the slug again. #}
{{ tr(section_label) }}
{% include section_template %}
{% endblock %}