Statistics
| Revision:

root / hci / trunk / eneraptor-web-app / grails-app / views / sysLog / detail.gsp @ 6

History | View | Annotate | Download (596 Bytes)

1
<html>
2

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

    
8
<body>
9
	
10
	<erptr:box title="Details for log entry ${params.id}">
11
	
12
		<div>Id:</div>
13
		<erptr:rawInfoBox>${params.id}</erptr:rawInfoBox>
14
		<br />
15
		
16
		<div>Entered on:</div>
17
		<erptr:rawInfoBox>${dateRecieved}</erptr:rawInfoBox>
18
		<br />
19
		
20
		<div>Device id:</div>
21
		<erptr:rawInfoBox>${deviceId}</erptr:rawInfoBox>
22
		<br />
23
		
24
		<div>Data:</div>
25
		<erptr:rawInfoBox><pre>${reportedData}</pre></erptr:rawInfoBox>
26
		<br />
27
		
28
	</erptr:box>
29
	
30
</body>
31

    
32
</html>