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

<%
if view.value.committed.value then
	view.value.committed.value = "There are no uncommitted files"
else
	view.value.committed.value = "WARNING!\nUntil you commit, you will lose your changes at next reboot/shutdown!"
end
view.value.committed.type = "text"

htmlviewfunctions.displayitem(view, page_info)
%>