diff options
Diffstat (limited to 'clamsmtp-details-html.lsp')
-rw-r--r-- | clamsmtp-details-html.lsp | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/clamsmtp-details-html.lsp b/clamsmtp-details-html.lsp index 78db808..a8ffd7e 100644 --- a/clamsmtp-details-html.lsp +++ b/clamsmtp-details-html.lsp @@ -1,11 +1,12 @@ -<% local data, viewlibrary = ... +<% local view, viewlibrary, page_info, session = ... htmlviewfunctions = require("htmlviewfunctions") html = require("acf.html") %> <% viewlibrary.dispatch_component("status") %> -<h2><%= html.html_escape(data.label) %></h2> <% -htmlviewfunctions.displayitem(data) +local header_level = htmlviewfunctions.displaysectionstart(view, page_info) +htmlviewfunctions.displayitem(view) +htmlviewfunctions.displaysectionend(header_level) %> |