{% extends "partials/_html.html" %}
{% block title %}Brains Dashboard · {{ page_title }}{% endblock %}
{# Sidebar section grouping. Keys map to the dashboard_nav nav_key.
Anything not listed here lands in 'More' as a defensive bucket. #}
{% set _SIDENAV_SECTIONS = [
('Live', ['overview', 'sessions', 'decisions', 'handoffs']),
('Work', ['tasks', 'routes', 'recurring']),
('Knowledge', ['events', 'patterns', 'tools', 'workspaces', 'operators']),
] %}
{% set _nav_by_key = {} %}
{% for nav_key, nav_label, nav_href, nav_icon in dashboard_nav %}
{% set _ = _nav_by_key.update({nav_key: (nav_label, nav_href, nav_icon)}) %}
{% endfor %}
{% block body %}