summaryrefslogtreecommitdiffstats
path: root/lbu-listbackups-html.lsp
blob: 9b656ccbed95cb9dbb674b1d9c195f0b245f00c7 (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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
<% local view, viewlibrary, page_info, session = ... 
htmlviewfunctions = require("htmlviewfunctions")
html = require("acf.html")
%>

<script type="text/javascript">
	if (typeof jQuery == 'undefined') {
		document.write('<script type="text/javascript" src="<%= html.html_escape(page_info.wwwprefix) %>/js/jquery-latest.js"><\/script>');
	}
</script>

<script type="text/javascript">
	if (typeof $.tablesorter == 'undefined') {
		document.write('<script type="text/javascript" src="<%= html.html_escape(page_info.wwwprefix) %>/js/jquery.tablesorter.js"><\/script>');
	}
</script>

<script type="text/javascript">
	$(document).ready(function() {
		$("#backuplist").tablesorter({headers: {0:{sorter: false}}, widgets: ['zebra']});
	});
</script>

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

<h1>Backup Archives</h1>
<% if #view.value == 0 then %>
<p>No backup files</p>
<% else %>
	<table id="backuplist" class="tablesorter"><thead>
	<tr>
		<th>Action</th>
		<th>File</th>
	</tr>
	</thead><tbody>
	<% for i,name in ipairs(view.value) do %>
		<tr><td>
			<%= html.link{value="selectbackup?backup="..name.."&redir=config&submit=true", label="Revert "} %>
		</td>
		<td><%= html.html_escape(name) %></td></tr>
	<% end %>
	</tbody></table>
<% end %>