comparison app/views/storage/exec.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 <h2>StoragePools</h2>
2 <?php foreach($storagepools as $pool){ ?>
3 <h3><?php echo $pool["name"]; ?></h3>
4 <?php echo $this->element("storage/poolinfo",array("pool" => $pool)); ?>
5 <table>
6 <tr>
7 <th>Actions.</th>
8 </tr>
9 <tr>
10 <td><?php echo $this->Html->link("Edit",array("action" => "EditPool","?" => array("id" => $pool["uuid"]))); ?></td>
11 </tr>
12 </table>
13 <h4>Volumes</h4>
14 <?php echo $this->element("storage/volumeinfotable",array("volumes" => $pool["volumes"])); ?>
15 <?php } ?>
16 <p><a href="../">Back</a></p>