Statistics
| Revision:

root / hci / trunk / eneraptor-web-app / grails-app / views / sysLog / export.gsp @ 42

History | View | Annotate | Download (1.3 KB)

1
<html>
2

    
3
<head>
4
	<title>Log &raquo; Browsing</title>
5
	<meta name="layout" content="main" />
6
</head>
7

    
8
<body>
9
	
10
	<erptr:box title="Export log entries">
11
		<p>Devices to include / ignore:</p>
12
		
13
		<form id="browseForm" action="exportDo" target="_blank">			
14
				<g:each in="${devicesForCheckBox}" var="deviceForCheckBox">
15
					<label for="cb_${deviceForCheckBox.deviceId}">&nbsp;</label>
16
					<g:checkBox name="cb_${deviceForCheckBox.deviceId}" value="${params['cb_' + deviceForCheckBox.deviceId]}"/>
17
					<span>${deviceForCheckBox.friendlyName}</span>
18
					<br />
19
				</g:each>
20
				<label for="all_cb">&nbsp;</label>
21
				<g:checkBox name="all_cb" value="${params['all_cb']}" />
22
				<span><b>All devices (including <i>unknown devices</i>)</b></span>
23
			<br /><br />
24
			<label for="fromDate">From</label>
25
			<g:datePicker name="fromDate" value="${params.fromDate}" />
26
			<br /><br />
27
			<label for="tillDate">Till</label>
28
			<g:datePicker name="tillDate" value="${params.tillDate}" />
29
			<br /><br />
30
			<p>Options:</p>
31
			<label for="format">Output format</label>
32
			<g:select name="format" from="['Plain text (.txt)','PostgreSQL script (.sql)','Extensible Markup Language (.xml)']" />
33
			<br /><br />
34
			<g:submitButton name="submit" value="Export" />
35
		</form>
36
		
37
	</erptr:box>
38
	
39
</body>
40

    
41
</html>