summaryrefslogtreecommitdiffstats
path: root/modules-status-html.lsp
blob: 871202e09017be91a91e78e7e3a4c3d641b87080 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
<% local view, viewlibrary, page_info, session = ... %> 
<% htmlviewfunctions = require("htmlviewfunctions") %>
<% html = require("acf.html") %>

<%
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)
%>