diff options
Diffstat (limited to 'modules-status-html.lsp')
-rw-r--r-- | modules-status-html.lsp | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/modules-status-html.lsp b/modules-status-html.lsp index e70dee1..871202e 100644 --- a/modules-status-html.lsp +++ b/modules-status-html.lsp @@ -3,7 +3,11 @@ <% html = require("acf.html") %> <% -local header_level = htmlviewfunctions.displayheader(cfe({label="Modules"}), page_info) -htmlviewfunctions.displayheader(cfe({label="Installed modules"}), page_info, htmlviewfunctions.incrementheader(header_level)) +local header_level = htmlviewfunctions.displaysectionstart(cfe({label="Modules"}), page_info) +local header_level2 = htmlviewfunctions.displaysectionstart(cfe({label="Installed modules"}), page_info, htmlviewfunctions.incrementheader(header_level)) %> <pre><%= html.html_escape(view.value) %></pre> +<% +htmlviewfunctions.displaysectionend(header_level2) +htmlviewfunctions.displaysectionend(header_level) +%> |