Added several backreference to Overview pages
authorSteven Barth <steven@midlink.org>
Fri, 3 Oct 2008 16:55:06 +0000 (16:55 +0000)
committerSteven Barth <steven@midlink.org>
Fri, 3 Oct 2008 16:55:06 +0000 (16:55 +0000)
applications/luci-fw/luasrc/model/cbi/luci_fw/rrule.lua
applications/luci-fw/luasrc/model/cbi/luci_fw/trule.lua
modules/admin-full/luasrc/model/cbi/admin_network/ifaces.lua
modules/admin-full/luasrc/model/cbi/admin_network/wifi.lua

index 7958676..f21d36a 100644 (file)
@@ -20,6 +20,10 @@ m = Map("firewall", translate("fw_redirect"), translate("fw_redirect_desc"))
 s = m:section(NamedSection, arg[1], "redirect", "")
 s.anonymous = true
 
+back = s:option(DummyValue, translate("overview"))
+back.value = ""
+back.titleref = luci.dispatcher.build_url("admin", "network", "firewall", "redirection")
+
 name = s:option(Value, "_name", translate("name"))
 name.rmempty = true
 name.size = 10
index 3712196..3d1a041 100644 (file)
@@ -17,6 +17,11 @@ m = Map("firewall", translate("firewall_rule"), translate("firewall_rule_desc"))
 s = m:section(NamedSection, arg[1], "rule", "")
 s.anonymous = true
 
+back = s:option(DummyValue, translate("overview"))
+back.value = ""
+back.titleref = luci.dispatcher.build_url("admin", "network", "firewall", "traffic")
+
+
 name = s:option(Value, "_name", translate("name")..translate("cbi_optional"))
 name.rmempty = true
 
index 5470b8a..2533617 100644 (file)
@@ -19,6 +19,10 @@ m = Map("network", translate("interfaces"), translate("a_n_ifaces1"))
 s = m:section(NamedSection, arg[1], "interface")
 s.addremove = true
 
+back = s:option(DummyValue, translate("overview"))
+back.value = ""
+back.titleref = luci.dispatcher.build_url("admin", "network", "network")
+
 p = s:option(ListValue, "proto", translate("protocol"))
 p:value("static", translate("static"))
 p:value("dhcp", "DHCP")
index d1e8917..4f2ae17 100644 (file)
@@ -19,6 +19,11 @@ m = Map("wireless", translate("networks"), translate("a_w_networks1"))
 s = m:section(NamedSection, arg[1], "wifi-device", translate("device") .. " " .. arg[1])
 --s.addremove = true
 
+back = s:option(DummyValue, translate("overview"))
+back.value = ""
+back.titleref = luci.dispatcher.build_url("admin", "network", "wireless")
+
+
 en = s:option(Flag, "disabled", translate("enable"))
 en.enabled = "0"
 en.disabled = "1"