From: Jo-Philipp Wich Date: Sun, 1 Nov 2009 19:49:07 +0000 (+0000) Subject: libs/cbi: fix formatting issue in zone picker widget X-Git-Tag: 0.10.0~994 X-Git-Url: https://git.archive.openwrt.org/?p=project%2Fluci.git;a=commitdiff_plain;h=a60f781bdf6ff4b4d117fd1dfe54c8a664c5bfaf libs/cbi: fix formatting issue in zone picker widget --- diff --git a/libs/cbi/luasrc/view/cbi/firewall_zonelist.htm b/libs/cbi/luasrc/view/cbi/firewall_zonelist.htm index 863452fbb..052378664 100644 --- a/libs/cbi/luasrc/view/cbi/firewall_zonelist.htm +++ b/libs/cbi/luasrc/view/cbi/firewall_zonelist.htm @@ -48,10 +48,12 @@ $Id$ style="background-color:<%=zone:get_color()%>; padding:0.5em"> <%=zone:name()%>: <% - local empty = true + local zempty = true for _, net in ipairs(zone:get_networks()) do net = nwm:get_network(net) + zempty = false if net then + local nempty = true %>   <%- if net:name() == self.network then -%> @@ -62,13 +64,14 @@ $Id$ <% for _, iface in ipairs(net and net:get_interfaces() or {}) do if not iface:is_bridgeport() then - empty = false + nempty = false %> style="width:16px; height:16px; vertical-align:middle" src="<%=resource%>/icons/<%=iface:type()%><%=iface:is_up() and "" or "_disabled"%>.png" /> <% end end %> + <% if nempty then %><%:(no interfaces attached)%><% end %> <% end end %> - <% if empty then %><%:(no interfaces attached)%><% end %> + <% if zempty then %><%:(no interfaces attached)%><% end %> <% end end %>