adjust admin categories (#455)

This commit is contained in:
Steve AB7PA 2022-07-25 14:38:18 -07:00 committed by GitHub
parent 54ecb2a10c
commit 6272209324
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 9 additions and 9 deletions

View File

@ -242,13 +242,20 @@ local settings = {
needreboot = true needreboot = true
}, },
{ {
category = "OLSR", category = "Network Tools",
key = "aredn.olsr.restart", key = "aredn.olsr.restart",
type = "none", type = "none",
desc = "Will restart OLSR when saving setting -- wait up to 2 or 3 minutes to receive response.", desc = "Will restart OLSR when saving setting -- wait up to 2 or 3 minutes to receive response.",
default = "0", default = "0",
postcallback = "olsr_restart()" postcallback = "olsr_restart()"
}, },
{
category = "Network Tools",
key = "aredn.@iperf[0].enable",
type = "boolean",
desc = "Enable the included iperf3 client/server support",
default = "1"
},
{ {
category = "AREDN Alerts", category = "AREDN Alerts",
key = "aredn.aam.refresh", key = "aredn.aam.refresh",
@ -280,13 +287,6 @@ local settings = {
default = "", default = "",
postcallback = "alert_purge()" postcallback = "alert_purge()"
}, },
{
category = "iPerf",
key = "aredn.@iperf[0].enable",
type = "boolean",
desc = "Enable the included iperf3 client/server support",
default = "1"
},
{ {
category = "Link Quality", category = "Link Quality",
key = "aredn.@lqm[0].enable", key = "aredn.@lqm[0].enable",
@ -819,7 +819,7 @@ do
end end
sval = sval and tostring(sval) or "" sval = sval and tostring(sval) or ""
if setting.category ~= prior_category then if setting.category ~= prior_category then
html.print([[<tr class="wscan-row-node"><td align="center" colspan="4"><b>]] .. setting.category .. [[</b></td></tr>]]) html.print([[<tr style=background-color:lightseagreen><td align="center" colspan="4"><b>]] .. setting.category .. [[</b></td></tr>]])
prior_category = setting.category prior_category = setting.category
end end
html.print([[<tr><td align="center"><span title="]] .. setting.desc .. [["><img src="/qmark.png" /></span></td><td>]] .. setting.key .. [[</td><td>]]) html.print([[<tr><td align="center"><span title="]] .. setting.desc .. [["><img src="/qmark.png" /></span></td><td>]] .. setting.key .. [[</td><td>]])