<%# LuCI - Lua Configuration Interface Copyright 2009 Jo-Philipp Wich Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 $Id: firewall_zonelist.htm 5651 2009-12-26 00:09:47Z jow $ -%> <%+cbi/valueheader%> <%- local utl = require "luci.util" local fwm = require "luci.model.firewall".init() local nwm = require "luci.model.network".init() local zone, fwd, fz local value = self:formvalue(section) if not value or value == "-" then value = self:cfgvalue(section) or self.default end local def = fwm:get_defaults() local zone = fwm:get_zone(value) local empty = true -%> <% if zone then %>
 ⇒  <% for _, fwd in ipairs(zone:get_forwardings_by("src")) do fz = fwd:dest_zone() empty = false %>   <% end %> <% if empty then %> <% end %>
<% end %> <%+cbi/valuefooter%>