{% set links = [ { href: '/app/dashboard', label: 'Dashboard', section: 'dashboard' }, { href: '/app/ips', label: 'IPs', section: 'ips' }, { href: '/app/subnets', label: 'Subnets', section: 'subnets' }, { href: '/app/manual-blocks', label: 'Manual blocks', section: 'manual-blocks' }, { href: '/app/allowlist', label: 'Allowlist', section: 'allowlist' }, { href: '/app/policies', label: 'Policies', section: 'policies' }, { href: '/app/reporters', label: 'Reporters', section: 'reporters' }, { href: '/app/consumers', label: 'Consumers', section: 'consumers' }, { href: '/app/tokens', label: 'Tokens', section: 'tokens' }, { href: '/app/categories', label: 'Categories', section: 'categories' }, { href: '/app/audit', label: 'Audit', section: 'audit' }, { href: '/app/settings', label: 'Settings', section: 'settings' }, { href: '/app/me', label: 'My identity', section: 'me' }, ] %} {% for link in links %} {% if link.upcoming is defined %} {{ link.label }} {{ link.upcoming }} {% else %} {% set is_active = (active_section is defined and active_section == link.section) %} {{ link.label }} {% endif %} {% endfor %}