summaryrefslogtreecommitdiffstats
path: root/lbu-listbackups-html.lsp
blob: f5282273faeab5053195f47ba6d7905081d40468 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<% local view, viewlibrary, pageinfo, session = ... 
require("viewfunctions")
%>

<% displaycommandresults({"selectbackup"}, session) %>

<H1>Backup Archives</H1>
<DL>
<% if #view.value == 0 then %>
No backup files
<% else %>
	<table><tr>
		<td class="header">Action</td>
		<td class="header">File</td>
	</tr>
	<% for i,name in ipairs(view.value) do %>
		<tr><td>
			<%= html.link{value="selectbackup?backup="..name, label="Revert "} %>
		</td>
		<td><%= html.html_escape(name) %></td></tr>
	<% end
end %>
</table>
</DL>