summaryrefslogtreecommitdiffstats
path: root/modules-available/systemstatus/templates/diskstat.html
blob: 1cb8a3ef8e5ea49b89034ff1a52b58b90c943ead (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
<div class="slx-storechart">
	{{#system}}
	<b>{{lang_systemPartition}}</b>
	<span class="glyphicon glyphicon-info-sign" title={{filesystem}}/>
	<div id="circles-system"></div>
	<div>{{lang_capacity}}: {{size}}</div>
	<div>{{lang_free}}: {{free}}</div>
	{{/system}}
	{{^system}}
	<b>{{lang_systemStoreError}}</b>
	{{/system}}
</div>
<div class="slx-storechart">
	{{#store}}
	<b>{{lang_vmStore}}</b>
	<span class="glyphicon glyphicon-info-sign" title={{filesystem}}/>
	<div id="circles-store"></div>
	<div>{{lang_capacity}}: {{size}}</div>
	<div>{{lang_free}}: {{free}}</div>
	{{/store}}
	{{^store}}
	<b>{{lang_vmStoreError}}</b>
	{{/store}}
</div>
<div class="clearfix"></div>
{{#notConfigured}}
<div>{{lang_storeNotConfigured}}</div>
{{/notConfigured}}
{{#storeMissing}}
<div>{{lang_storeMissingExpected}} {{storeMissing}}</div>
{{/storeMissing}}
{{#wrongStore}}
<div>{{lang_foundStore}} {{wrongStore}}</div>
{{/wrongStore}}
<a href="?do=VmStore">{{lang_goToStoreConf}}</a>
<script type="text/javascript">
	{{#store}}
	Circles.create({
	id:         'circles-store',
			  radius:     60,
			  value:      {{{percent}}},
			  maxValue:   100,
			  width:      10,
			  text:       function(value){return value + '%'; },
			  colors:     ['#D3B6C6', '#{{color}}'],
			  duration:   400,
			  wrpClass:   'circles-wrp',
			  textClass:  'circles-text'
			  });
	{{/store}}
	{{#system}}
	Circles.create({
	id:         'circles-system',
			  radius:     60,
			  value:      {{{percent}}},
			  maxValue:   100,
			  width:      10,
			  text:       function(value){return value + '%'; },
			  colors:     ['#D3B6C6', '#{{color}}'],
			  duration:   400,
			  wrpClass:   'circles-wrp',
			  textClass:  'circles-text'
			  });
	{{/system}}
</script>