aboutsummaryrefslogtreecommitdiffstats
path: root/tools/control/web/tmpl/vd-pv.tmpl
blob: 8195f82964e3f019ff094a897e3bb5e57b55aa75 (plain)
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
View Partitions
SECTION&XenoServers
BREADCRUMB&Virtual Disk Manager&vd.jsp

<!-- content -->
<img src="pixel.gif" class="block" width="1" height="12">

<table cellpadding="0" cellspacing="0" border="0">
<tbody>
INCLUDE&vdmenu.tmpl
<td valign="top">
note: highlighted entries are currently being used as xeno partitions.
<br><br>

<table cellpadding="2" cellspacing="0" border="0">
<tbody>
  <tr class="vdh"><td>maj:min</td><td>blocks</td><td>start sect</td><td>num sects</td><td>name</td></tr>
  <%
    int count = root.getPartitionCount();
    for (int loop = 0; loop < count; loop++)
    {
      Partition p = root.getPartition(loop);
      if (p.getIsXeno() == true)
      {
  %>
  <tr class="vds">
  <%
      }
      else
      {
  %>
  <tr class="vdt">
  <%
     }
  %>
  <td><%= p.getMajor() %>:<%= p.getMinor() %></td>
  <td align="right"><%= p.getBlocks() %></td>
  <td align="right"><%= p.getStartSect() %> </td>
  <td align="right"><%= p.getNumSects() %> </td>
  <td><%= p.getName() %> </td>
  <%
    }
  %>
</tbody>
</table>

</td>
</tbody>
</table>




<!-- end content -->