diff options
author | Steven Barth <steven@midlink.org> | 2008-07-25 22:15:18 +0000 |
---|---|---|
committer | Steven Barth <steven@midlink.org> | 2008-07-25 22:15:18 +0000 |
commit | bd4ac252a9c05d99d2132a685b6a89cef78d1cfa (patch) | |
tree | fc9955f67bd14dffe26a72273774d3bcc1e4dd9a /applications/luci-splash | |
parent | ce6051440267f90ad0241aed7b729007d837165d (diff) |
applications/luci-splash: Made configuration sections tables
Diffstat (limited to 'applications/luci-splash')
-rw-r--r-- | applications/luci-splash/luasrc/model/cbi/splash/splash.lua | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/applications/luci-splash/luasrc/model/cbi/splash/splash.lua b/applications/luci-splash/luasrc/model/cbi/splash/splash.lua index a14a38c1d..37ef559af 100644 --- a/applications/luci-splash/luasrc/model/cbi/splash/splash.lua +++ b/applications/luci-splash/luasrc/model/cbi/splash/splash.lua @@ -7,6 +7,7 @@ s = m:section(NamedSection, "general", "core", "Allgemein") s:option(Value, "leasetime", "Freigabezeit", "h") s = m:section(TypedSection, "iface", "Schnittstellen") +s.template = "cbi/tblsection" s.addremove = true s.anonymous = true @@ -19,11 +20,13 @@ luci.model.uci.foreach("network", "interface", end) s = m:section(TypedSection, "whitelist", "Automatische Freigabe") +s.template = "cbi/tblsection" s.addremove = true s.anonymous = true s:option(Value, "mac", "MAC-Adresse") s = m:section(TypedSection, "blacklist", "Automatische Sperrung") +s.template = "cbi/tblsection" s.addremove = true s.anonymous = true s:option(Value, "mac", "MAC-Adresse") |