Files
web/scripts/lua/settings_header.lp
T
RD WebDesignandAdam Warner 61f6c982b7 Use the new AdminLTE header structure
- remove old `.page-title` from all pages;
- add the the new header structure and place the title inside the new
  `.app-content-header` element;

Signed-off-by: RD WebDesign <github@rdwebdesign.com.br>
2026-07-17 22:43:25 +01:00

22 lines
684 B
Lua

<!-- Title/Header -->
<div class="app-content-header">
<div class="container-fluid">
<div class="row">
<div class="col-sm-6">
<h1><?= PageTitle ?></h1>
</div>
<div class="col-sm-6">
<div class="settings-selector">
<? if scriptname ~= 'settings/all' then
-- Show the level selector, except in All Settings page
?>
<input type="checkbox" id="expert-settings">
<? else ?>
<input type="checkbox" id="only-changed">
<? end ?>
</div>
</div>
</div>
</div>
</div>