source: branches/0.4/web/addons/job_monarch/dwoo/compiled/templates/default/grid_tree.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.1 KB
Line 
1<?php
2/* template head */
3/* end template head */ ob_start(); /* template body */ ?><table border="0" width="100%">
4<tr>
5  <td class="title"><B><?php echo $this->scope["self"];?> Grid Tree</b></td>
6</tr>
7</table>
8
9<div align="center">
10<table cellspacing="5" cellpadding="5" border="1">
11<tr>
12
13<?php if (((isset($this->scope["parentgrid"]) ? $this->scope["parentgrid"] : null) !== null)) {
14?>
15<td align="center">
16<table cellpadding="3" cellspacing="3" border="0">
17<?php echo $this->scope["parents"];?>
18
19</table>
20</td>
21<?php 
22}?>
23
24</tr>
25
26<tr>
27<td align="center">
28
29<table cellpadding="3" cellspacing="3" border="0">
30<tr>
31 <td colspan="<?php echo $this->scope["n"];?>" class="self" align="center" style="border: thin solid rgb(47,47,47);">
32  <?php echo $this->scope["self"];?>
33
34 </td>
35</tr>
36
37<tr>
38 <?php echo $this->scope["children"];?>
39
40</tr>
41</table>
42
43</td>
44</tr>
45
46</table>
47</div>
48
49<p>
50<hr />
51<b>Legend:</b>
52<table cellspacing="5" border="0">
53<tr>
54<td class="self" width="20">&nbsp;</td><td>This Grid.</td>
55</tr>
56<tr>
57<td class="grid">&nbsp;</td><td>A Remote Grid.</td>
58</tr>
59</table>
60
61<?php  /* end template body */
62return $this->buffer . ob_get_clean();
63?>
Note: See TracBrowser for help on using the repository browser.