diff options
author | Evgeny Zinoviev <me@ch1p.io> | 2024-02-19 02:09:27 +0300 |
---|---|---|
committer | Evgeny Zinoviev <me@ch1p.io> | 2024-02-19 02:09:29 +0300 |
commit | 838b01c548939158f99529a714fe105249d70675 (patch) | |
tree | e4295c9711481d917a897514e1ac153dac18e9bb /web/kbn_templates/index.j2 | |
parent | 3741f7cf78a288e967415ccb6736c888a21c211b (diff) |
web_kbn: update bootstrap to 5.3, add auto-dark-mode support
Diffstat (limited to 'web/kbn_templates/index.j2')
-rw-r--r-- | web/kbn_templates/index.j2 | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/web/kbn_templates/index.j2 b/web/kbn_templates/index.j2 index cd40819..0a7803b 100644 --- a/web/kbn_templates/index.j2 +++ b/web/kbn_templates/index.j2 @@ -31,7 +31,7 @@ <nav class="mt-4"> <div class="nav nav-tabs" id="nav-tab"> <button class="nav-link active" type="button" id="cam_zones_btn" data-id="zones">{{ "cams_by_zone"|lang }}</button> - <button class="nav-link" type="button" id="cam_all_btn" data-id="all">{{ "cams_all"|lang }}</button> + <button class="nav-link" type="button" id="cam_list_btn" data-id="list">{{ "cams_list"|lang }}</button> </div> </nav> @@ -42,7 +42,7 @@ </a> {% endfor %} </div> - <ul class="list-group list-group-flush" id="cam_all" style="display: none"> + <ul class="list-group list-group-flush" id="cam_list" style="display: none"> {% for id in allcams %} <li class="list-group-item"><a href="/cams.cgi?id={{ id }}">{{ id|lang('ipcam') }}</a></li> {% endfor %} |