<% local form, viewlibrary, page_info, session = ... %> <% htmlviewfunctions = require("htmlviewfunctions") %> <% if viewlibrary and viewlibrary.dispatch_component then viewlibrary.dispatch_component("status") end %> <% local header_level = htmlviewfunctions.displayheader(form, page_info) header_level = htmlviewfunctions.incrementheader(header_level) htmlviewfunctions.displayheader(cfe({label="Advanced Configuration"}), page_info, header_level) header_level = htmlviewfunctions.incrementheader(header_level) form.action = page_info.script .. page_info.prefix .. page_info.controller .. "/" .. page_info.action htmlviewfunctions.displayformstart(form) htmlviewfunctions.displayheader(cfe({label="General"}), page_info, header_level) htmlviewfunctions.displayformitem(form.value.logfile, "logfile") htmlviewfunctions.displayformitem(form.value.loglevel, "loglevel") htmlviewfunctions.displayformitem(form.value.smallerlogs, "smallerlogs") htmlviewfunctions.displayheader(cfe({label="Log Rotate"}), page_info, header_level) htmlviewfunctions.displayformitem(form.value.maxsize, "maxsize") htmlviewfunctions.displayformitem(form.value.numrotate, "numrotate") htmlviewfunctions.displayheader(cfe({label="Remote Logging"}), page_info, header_level) htmlviewfunctions.displayformitem(form.value.localandnetworklog, "localandnetworklog") htmlviewfunctions.displayformitem(form.value.remotelogging, "remotelogging") htmlviewfunctions.displayheader(cfe({label="Save and Apply Above Settings"}), page_info, header_level) htmlviewfunctions.displayformend(form) %>