Statistics
| Revision:

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

History | View | Annotate | Download (1.08 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="Clear log entries">
11
		<p>Devices to include / ignore:</p>
12
		
13
		<form id="clearForm" action="clearDo">			
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
			<g:submitButton name="submit" value="Clear" />
31
		</form>
32
		
33
	</erptr:box>
34
	
35
</body>
36

    
37
</html>