libs/web: align interface related widgets to changed network model api
This commit is contained in:
parent
575b32de81
commit
bf49f78599
5 changed files with 6 additions and 6 deletions
|
@ -35,7 +35,7 @@
|
|||
<%- end -%>
|
||||
<%
|
||||
local nempty = true
|
||||
for _, iface in ipairs(net and net:get_interfaces() or {}) do
|
||||
for _, iface in ipairs(net:is_bridge() and net:get_interfaces() or { net:get_interface() }) do
|
||||
nempty = false
|
||||
%>
|
||||
<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" />
|
||||
|
|
|
@ -57,7 +57,7 @@
|
|||
<%- end -%>
|
||||
<%
|
||||
local nempty = true
|
||||
for _, iface in ipairs(net and net:get_interfaces() or {}) do
|
||||
for _, iface in ipairs(net:is_bridge() and net:get_interfaces() or { net:get_interface() }) do
|
||||
nempty = false
|
||||
%>
|
||||
<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" />
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
local iface
|
||||
local ifaces = net:get_interfaces()
|
||||
local value
|
||||
|
||||
|
||||
if self.map:formvalue(cbeid) == "1" then
|
||||
value = self:formvalue(section) or self.default or ""
|
||||
else
|
||||
|
@ -25,7 +25,7 @@
|
|||
local n = self.network and net:get_network(self.network)
|
||||
if n then
|
||||
local i
|
||||
for _, i in ipairs(n:get_interfaces()) do
|
||||
for _, i in ipairs(n:is_bridge() and n:get_interfaces() or { n:get_interface() }) do
|
||||
checked[i:name()] = true
|
||||
end
|
||||
end
|
||||
|
|
|
@ -15,7 +15,7 @@
|
|||
<span style="background-color:#FFFFFF; border:1px solid #CCCCCC; padding:2px"><%=net:name()%>:
|
||||
<%
|
||||
local empty = true
|
||||
for _, iface in ipairs(net:get_interfaces()) do
|
||||
for _, iface in ipairs(net:is_bridge() and net:get_interfaces() or { net:get_interface() }) do
|
||||
if not iface:is_bridge() then
|
||||
empty = false
|
||||
%>
|
||||
|
|
|
@ -32,7 +32,7 @@
|
|||
 <span style="background-color:#FFFFFF; border:1px solid #CCCCCC; padding:2px"><%=net:name()%>:
|
||||
<%
|
||||
local empty = true
|
||||
for _, iface in ipairs(net:get_interfaces()) do
|
||||
for _, iface in ipairs(net:is_bridge() and net:get_interfaces() or { net:get_interface() }) do
|
||||
if not iface:is_bridge() then
|
||||
empty = false
|
||||
%>
|
||||
|
|
Loading…
Reference in a new issue