summaryrefslogtreecommitdiffstats
path: root/provisioning-searchbymac-html.lsp
blob: 1859641b7ddc19d1ee007d9ace5f41b00d970b41 (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
<% local form, viewlibrary, page_info, session = ... 
require("viewfunctions")
%>

<script type="text/javascript" src="<%= html.html_escape(page_info.wwwprefix) %>/js/jquery-latest.js"></script>
<script type="text/javascript">
	$(function(){
		$("input[@name='value']").focus();
	});
</script>

<% displaycommandresults({"deletedevice", "editdevice", "editdeviceparams", "overridedeviceparams"}, session) %>

<%
if session.searchdevicesresult then
	local data = session.searchdevicesresult
	session.searchdevicesresult = nil

	if data.value and data.value.result then
		local func = haserl.loadfile(page_info.viewfile:gsub("searchbymac", "listdevices"))
		func(data.value.result, viewlibrary, page_info, session)
	end
end
%>

<H1>Search by MAC Address</H1>
<DL>
<form action="/cgi-bin/acf/provisioning/provisioning/searchdevices" method="POST">
<input type="hidden" name="id" value="device.mac">
<input type="hidden" name="comparison" value="~">
<DT>MAC Address</DT>
<DD><input class="text" type="text"  name="value"  value="" ></DD>
<DT></DT><DD><input class="submit" type="submit" name="Search" value="Search"></DD>
</FORM></DL>