summaryrefslogtreecommitdiffstats
path: root/ppp-listpeers-html.lsp
blob: 75a58aad7e021b3b9ee82c4c67d6c2c61cd018bd (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
44
45
46
47
48
49
<% local form, 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() {
		$("#list").tablesorter({widgets: ['zebra']});
	});
</script>

<% htmlviewfunctions.displaycommandresults({"deletepeer", "editpeer"}, session) %>
<% htmlviewfunctions.displaycommandresults({"createpeer"}, session, true) %>

<h1>Peer Files</h1>
<table id="list" class="tablesorter"><thead>
	<tr>
		<th>Action</th>
		<th>Peer File</th>
	</tr>
</thead><tbody>
<% for i,file in ipairs(form.value) do %>
	<tr>
		<td>
			<%
			if viewlibrary.check_permission("deletepeer") then io.write(html.link{value = "deletepeer?submit=true&name=" .. file, label="Delete " }) end
			if viewlibrary.check_permission("editpeer") then io.write(html.link{value = "editpeer?name=" .. file.."&redir="..page_info.orig_action, label="Edit " }) end
			%>
		</td>
		<td><%= html.html_escape(string.gsub(file, "^.*/", "")) %></td>
	</tr>
<% end %>
</tbody></table>

<% if viewlibrary and viewlibrary.dispatch_component and viewlibrary.check_permission("createpeer") then
	viewlibrary.dispatch_component("createpeer")
end %>