{# Copyright 2022 Jo-Philipp Wich Licensed to the public under the Apache License 2.0. -#} {% import { access } from 'fs'; import { cursor } from 'uci'; const wizard_request = ctx.request_path ?? []; let wizard_pending = false; if (ctx.authsession && wizard_request[0] == 'admin' && wizard_request[1] != 'wizard' && access('/etc/config/wizard') && !access('/usr/sbin/quickstart') && !access('/etc/config/finished')) { let wizard_uci = cursor(); wizard_pending = (wizard_uci.get('wizard', 'config', 'finished') != '1'); } include(`themes/${theme}/header`); -%}