mirror of
https://github.com/kiddin9/op-packages.git
synced 2026-08-01 07:07:52 +08:00
15 lines
286 B
Lua
15 lines
286 B
Lua
--[[
|
|
LuCI - Lua Configuration Interface
|
|
]]--
|
|
|
|
local m, s, o
|
|
|
|
m = SimpleForm("shadowrt", translate("ShadoWRT"), translate("ShadoWRT can create isolated clones of iStoreOS/OpenWRT."))
|
|
m.submit = false
|
|
m.reset = false
|
|
|
|
s = m:section(SimpleSection)
|
|
s.template = "shadowrt/status"
|
|
|
|
return m
|