Statistics
| Revision:

root / hci / trunk / eneraptor-web-app / grails-app / views / sysLog / main.gsp @ 11

History | View | Annotate | Download (718 Bytes)

1
<html>
2

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

    
8
<body>
9
	
10
	<erptr:box title="Log">
11
		<p>TODO: Some information about log.</p>
12
	</erptr:box>
13
	
14
	<erptr:box title="Disk usage">
15
		<div style="float:left;">
16
			<div style="width: 100px;border:1px solid grey;">
17
				<div style="width:${percent}px;background:grey;">
18
					&nbsp;
19
				</div>
20
			</div>
21
		</div>
22
		<span> &nbsp;&nbsp;&nbsp; ${percent}% | free space ${(int)freeSpace} MB of total ${(int)totalSpace} MB </span>
23
		<g:if test="${percent >= 95}">
24
				<i style="color:red;">&nbsp;&nbsp;&nbsp;Warning: disk is almost full. You should erase some old log entries.</i>
25
		</g:if>
26
	</erptr:box>
27

    
28
</body>
29

    
30
</html>