comparison app/views/elements/storage/poolinfo.ctp @ 1:eb4fee3d9bb8

added StoragePools management functions (storage_controller)
author Shoshi TAMAKI <shoshi@cr.ie.u-ryukyu.ac.jp>
date Wed, 27 Jul 2011 00:00:25 +0900
parents
children
comparison
equal deleted inserted replaced
0:261e66bd5a0c 1:eb4fee3d9bb8
1 <table>
2 <tr>
3 <th>Name</th>
4 <th>State</th>
5 <th>Capacity</th>
6 <th>Allocation</th>
7 <th>Available</th>
8 </tr>
9 <tr>
10 <td><?php echo $pool["name"]; ?></td>
11 <td><?php echo $pool["state"]; ?></td>
12 <td><?php echo $pool["capacity"]; ?></td>
13 <td><?php echo $pool["allocation"]; ?></td>
14 <td><?php echo $pool["available"]; ?></td>
15 </tr>
16 </table>