Statistics
| Revision:

root / hci / trunk / eneraptor-web-app / grails-app / views / statistics / newCombGraph.gsp @ 63

History | View | Annotate | Download (1.03 KB)

1
<html>
2

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

    
8
<body>
9
	
10
	<erptr:box title="New combined graph">
11
		
12
		<form name="newCombGraphForm" action="newCombGraphDo">
13
		
14
			<fieldset>
15
				<legend>Basic info</legend>
16
				<label for="newCombGraphName">Name (short description)</label>
17
				<g:textField name="newCombGraphName" style="width:600px" />
18
				<br />
19
			</fieldset>
20
		
21
			<fieldset>
22
				<legend>Graphs</legend>
23
				<p>Select which single device graphs to combine</p>
24
				<p>Select by clicking on the grpah's name while holding CTRL key on your keyboard.</p>
25
				<br />
26
				<select multiple="multiple" name="graphsToCombine" id="graphsToCombine" size="10" style="width:820px;">
27
					<g:each in="${graphs}" var="graph">
28
						<option value="${graph.id}">(${graph.type}) ${graph.name}</option>
29
					</g:each>
30
				</select>
31
				<br /><br />
32
			</fieldset>
33
		
34
			<g:submitButton name="newCombGraphSubmit" value="Create new graph" />
35
		
36
		</form>
37
		
38
	</erptr:box>
39

    
40
</body>
41

    
42
</html>