source: branches/0.4/web/addons/job_monarch/dwoo/compiled/compiled/templates/job_monarch/cluster_host_metric_graphs.tpl.d17.php @ 755

Last change on this file since 755 was 755, checked in by ramonb, 11 years ago
  • add Dwoo
  • Property svn:executable set to *
File size: 1.2 KB
Line 
1<?php
2/* template head */
3/* end template head */ ob_start(); /* template body */ ?><center>
4<table id=graph_sorted_list>
5<tr>
6<?php 
7$_fh2_data = (isset($this->scope["sorted_list"]) ? $this->scope["sorted_list"] : null);
8if ($this->isTraversable($_fh2_data) == true)
9{
10        foreach ($_fh2_data as $this->scope['host'])
11        {
12/* -- foreach start output */
13?>
14<?php echo $this->scope["host"]["metric_image"];
15echo $this->scope["host"]["br"];?>
16
17<?php 
18/* -- foreach end output */
19        }
20}?>
21
22</tr>
23</table>
24
25<?php echo $this->scope["overflow_list_header"];?>
26
27<?php 
28$_fh3_data = (isset($this->scope["overflow_list"]) ? $this->scope["overflow_list"] : null);
29if ($this->isTraversable($_fh3_data) == true)
30{
31        foreach ($_fh3_data as $this->scope['host'])
32        {
33/* -- foreach start output */
34?>
35<?php echo $this->scope["host"]["metric_image"];
36echo $this->scope["host"]["br"];?>
37
38<?php 
39/* -- foreach end output */
40        }
41}?>
42
43<?php echo $this->scope["overflow_list_footer"];?>
44
45
46<?php if (((isset($this->scope["node_legend"]) ? $this->scope["node_legend"] : null) !== null)) {
47?>
48<p>
49(Nodes colored by 1-minute load) | <a href="./node_legend.html">Legend</A>
50</p>
51<?php 
52}?>
53
54</center>
55<?php  /* end template body */
56return $this->buffer . ob_get_clean();
57?>
Note: See TracBrowser for help on using the repository browser.