From: Steven Barth Date: Thu, 19 Jun 2014 15:18:35 +0000 (+0000) Subject: hnet: update mode selection X-Git-Url: https://git.archive.openwrt.org/?p=project%2Fluci.git;a=commitdiff_plain;h=6598993359025509a8fbd3d1f1079271e6c53e98 hnet: update mode selection --- diff --git a/protocols/ipv6/luasrc/model/cbi/admin_network/proto_hnet.lua b/protocols/ipv6/luasrc/model/cbi/admin_network/proto_hnet.lua index bd6c51835..0cf8c0101 100644 --- a/protocols/ipv6/luasrc/model/cbi/admin_network/proto_hnet.lua +++ b/protocols/ipv6/luasrc/model/cbi/admin_network/proto_hnet.lua @@ -12,8 +12,14 @@ You may obtain a copy of the License at local map, section, net = ... -section:taboption("general", Flag, "guest", translate("Guest mode")) -section:taboption("advanced", Flag, "adhoc", translate("Ad-hoc mode")) +local mode = section:taboption("general", ListValue, "mode", translate("Category")) +mode:value("auto", translate("Automatic")) +mode:value("external", translate("External")) +mode:value("guest", translate("Guest")) +mode:value("adhoc", translate("Ad-Hoc")) +mode.default = "auto" + + local plen = section:taboption("advanced", Value, "ip6assign", translate("IPv6 assignment length"), translate("Assign a part of given length of every public IPv6-prefix to this interface"))