libs/web: network widget fixes

This commit is contained in:
Jo-Philipp Wich 2011-09-25 11:59:21 +00:00
parent a6dcb3f6a3
commit ea6f5379dc
3 changed files with 3 additions and 3 deletions

View file

@ -25,7 +25,7 @@
local n = self.network and net:get_network(self.network)
if n then
local i
for _, i in ipairs(n:is_bridge() and n:get_interfaces() or { n:get_interface() }) do
for _, i in ipairs(n:get_interfaces() or { n:get_interface() }) do
checked[i:name()] = true
end
end

View file

@ -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:is_bridge() and net:get_interfaces() or { net:get_interface() }) do
for _, iface in ipairs(net:get_interfaces() or { net:get_interface() }) do
if not iface:is_bridge() then
empty = false
%>

View file

@ -36,7 +36,7 @@
if not iface:is_bridge() then
empty = false
%>
<img<%=attr("title", pcdata(iface:get_i18n()))%> style="width:16px; height:16px; vertical-align:middle" src="<%=resource%>/icons/<%=iface:type()%><%=iface:is_up() and "" or "_disabled"%>.png" />
<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 end %>
<% if empty then %><em><%:(no interfaces attached)%></em><% end %>
</span>