libs/web: show input/forward hints in zonelist widget only if bnoth allowany and...
[project/luci.git] / libs / web / luasrc / view / cbi / firewall_zonelist.htm
1 <%+cbi/valueheader%>
2
3 <%-
4 local utl = require "luci.util"
5 local fwm = require "luci.model.firewall".init()
6 local nwm = require "luci.model.network".init()
7
8 local zone, net, iface
9 local zones = fwm:get_zones()
10 local value = self:formvalue(section)
11 if not value or value == "-" then
12 value = self:cfgvalue(section) or self.default
13 end
14
15 local selected = false
16 local checked = { }
17
18 for value in utl.imatch(value) do
19 checked[value] = true
20 end
21
22 if not next(checked) then
23 checked[""] = true
24 end
25 -%>
26
27 <ul style="margin:0; list-style-type:none; text-align:left">
28 <% if self.allowlocal then %>
29 <li style="padding:0.5em">
30 <input class="cbi-input-radio" onclick="cbi_d_update(this.id)" onchange="cbi_d_update(this.id)"<%=attr("type", self.widget or "radio") .. attr("id", cbid .. "_empty") .. attr("name", cbid) .. attr("value", "") .. ifattr(checked[""], "checked", "checked")%> /> &#160;
31 <label<%=attr("for", cbid .. "_empty")%> style="background-color:<%=fwm.zone.get_color()%>; padding:0.5em">
32 <strong><%:Device%></strong>
33 <% if self.allowany and self.allowlocal then %>(<%:input%>)<% end %>
34 </label>
35 </li>
36 <% end %>
37 <% if self.allowany then %>
38 <li style="padding:0.5em">
39 <input class="cbi-input-radio" onclick="cbi_d_update(this.id)" onchange="cbi_d_update(this.id)"<%=attr("type", self.widget or "radio") .. attr("id", cbid .. "_any") .. attr("name", cbid) .. attr("value", "*") .. ifattr(checked["*"], "checked", "checked")%> /> &#160;
40 <label<%=attr("for", cbid .. "_any")%> style="background-color:<%=fwm.zone.get_color()%>; padding:0.5em">
41 <strong><%:Any zone%></strong>
42 <% if self.allowany and self.allowlocal then %>(<%:forward%>)<% end %>
43 </label>
44 </li>
45 <% end %>
46 <%
47 for _, zone in utl.spairs(zones, function(a,b) return (zones[a]:name() < zones[b]:name()) end) do
48 if zone:name() ~= self.exclude then
49 selected = selected or (value == zone:name())
50 %>
51 <li style="padding:0.5em">
52 <input class="cbi-input-radio" onclick="cbi_d_update(this.id)" onchange="cbi_d_update(this.id)"<%=attr("type", self.widget or "radio") .. attr("id", cbid .. "." .. zone:name()) .. attr("name", cbid) .. attr("value", zone:name()) .. ifattr(checked[zone:name()], "checked", "checked")%> /> &#160;
53 <label<%=attr("for", cbid .. "." .. zone:name())%> style="background-color:<%=zone:get_color()%>; padding:0.5em">
54 <strong><%=zone:name()%>:</strong>
55 <%
56 local zempty = true
57 for _, net in ipairs(zone:get_networks()) do
58 net = nwm:get_network(net)
59 if net then
60 zempty = false
61 %>
62 &#160;
63 <%- if net:name() == self.network then -%>
64 <span style="background-color:#FFFFFF; border:1px solid #000000; padding:2px; font-weight:bold"><%=net:name()%>:
65 <%- else -%>
66 <span style="background-color:#FFFFFF; border:1px solid #CCCCCC; padding:2px"><%=net:name()%>:
67 <%- end -%>
68 <%
69 local nempty = true
70 for _, iface in ipairs(net:is_bridge() and net:get_interfaces() or { net:get_interface() }) do
71 nempty = false
72 %>
73 <img<%=attr("title", iface:get_i18n())%> style="width:16px; height:16px; vertical-align:middle" src="<%=resource%>/icons/<%=iface:type()%><%=iface:is_up() and "" or "_disabled"%>.png" />
74 <% end %>
75 <% if nempty then %><em><%:(empty)%></em><% end %>
76 </span>
77 <% end end %>
78 <% if zempty then %><em><%:(empty)%></em><% end %>
79 </label>
80 </li>
81 <% end end %>
82
83 <% if self.widget ~= "checkbox" and not self.nocreate then %>
84 <li style="padding:0.5em">
85 <input class="cbi-input-radio" onclick="cbi_d_update(this.id)" onchange="cbi_d_update(this.id)" type="radio"<%=attr("id", cbid .. "_new") .. attr("name", cbid) .. attr("value", "-") .. ifattr(not selected, "checked", "checked")%> /> &#160;
86 <div style="background-color:<%=fwm.zone.get_color()%>; padding:0.5em; display:inline">
87 <label<%=attr("for", cbid .. "_new")%>><em><%:unspecified -or- create:%>&#160;</em></label>
88 <input style="width:6em" type="text"<%=attr("name", cbid .. ".newzone") .. ifattr(not selected, "value", luci.http.formvalue(cbid .. ".newzone") or self.default)%> onfocus="document.getElementById('<%=cbid%>_new').checked=true" />
89 </div>
90 </li>
91 <% end %>
92 </ul>
93
94 <%+cbi/valuefooter%>