From: Jo-Philipp Wich Date: Wed, 18 Jul 2018 09:46:46 +0000 (+0200) Subject: luci-base: rework CBI footer template X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=d7c868a05e95b7b3050b07dd4968c62bfce4c7f6;p=oweals%2Fluci.git luci-base: rework CBI footer template - Make sure that hitting enter in the form hits the CBI save action and not apply or cancel - Hide action panel if no actions are available - CLeanup code Signed-off-by: Jo-Philipp Wich (cherry picked from commit c09e1545608c9db5d9a81f7275528a6fc0a79505) --- diff --git a/modules/luci-base/luasrc/view/cbi/footer.htm b/modules/luci-base/luasrc/view/cbi/footer.htm index 5f939b646..ed632202c 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 %> - - <% 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 -%> +<% + 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 +%> +