diff --git a/modules/luci-base/luasrc/view/cbi/footer.htm b/modules/luci-base/luasrc/view/cbi/footer.htm index 5f939b6469..ed632202ce 100644 --- a/modules/luci-base/luasrc/view/cbi/footer.htm +++ b/modules/luci-base/luasrc/view/cbi/footer.htm @@ -1,23 +1,39 @@ - <%- if pageaction then -%> -
- <% if redirect and not flow.hidebackbtn then %> - - <% end %> +<% + local display_back = (redirect and not flow.hidebackbtn) + local display_skip = (flow.skip) + local display_apply = (not autoapply and not flow.hideapplybtn) + local display_save = (not flow.hidesavebtn) + local display_reset = (not flow.hideresetbtn) + + if pageaction and + (display_back or display_skip or display_apply or display_save or display_reset) + then + %>
<% + + if display_back then + %> <% + end + + if display_skip then + %> <% + end + + if display_apply then + %> <% + end + + if display_save then + %> <% + end + + if display_reset then + %> <% + end + + %>
<% + end +%> - <% if flow.skip then %> - - <% end %> - <% if not autoapply and not flow.hideapplybtn then %> - - <% end %> - <% if not flow.hidesavebtn then %> - - <% end %> - <% if not flow.hideresetbtn then %> - - <% end %> -
- <%- end -%>