diff options
author | Florian Eckert <fe@dev.tdt.de> | 2018-02-08 13:07:24 +0100 |
---|---|---|
committer | Florian Eckert <fe@dev.tdt.de> | 2018-03-01 12:33:43 +0100 |
commit | 846fb1f8bc7e779d22d399fa4ac4cb9f73964007 (patch) | |
tree | fc22590fbbb027be1b8e7697595c5bbd235db155 /applications/luci-app-firewall/luasrc/view/firewall | |
parent | fa756d1fbbb1af713bb75541eebdf0df127db4f6 (diff) |
luci-app-firewall: only show portforward template if there are more then one zone
Only show portforward template if there are more then one zone.
Signed-off-by: Florian Eckert <fe@dev.tdt.de>
Diffstat (limited to 'applications/luci-app-firewall/luasrc/view/firewall')
-rw-r--r-- | applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm b/applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm index 58121c420..e1fef02d9 100644 --- a/applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm +++ b/applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm @@ -2,6 +2,7 @@ local fw = require "luci.model.firewall".init() local wz = fw:get_zone("wan") local lz = fw:get_zone("lan") + local zones = fw:get_zones() %> <div class="cbi-section-create cbi-tblsection-create"> @@ -38,7 +39,7 @@ </tr> </table> <% end %> - <% if wz and lz then %> + <% if #zones > 1 then %> <table class="cbi-section-table" style="margin-left:5px"> <tr class="cbi-section-table-titles"> <th class="cbi-section-table-cell left" colspan="6"><br /><%:New forward rule%>:</th> |