<%- 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" />
<%- 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" />
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
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
<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
%>
 <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
%>