view 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
line wrap: on
line source

<h2>StoragePools</h2>
<?php foreach($storagepools as $pool){ ?>
<h3><?php echo $pool["name"]; ?></h3>
<?php echo $this->element("storage/poolinfo",array("pool" => $pool)); ?>
<table>
	<tr>
		<th>Actions.</th>
	</tr>
	<tr>
		<td><?php echo $this->Html->link("Edit",array("action" => "EditPool","?" => array("id" => $pool["uuid"]))); ?></td>
	</tr>
</table>
<h4>Volumes</h4>
<?php echo $this->element("storage/volumeinfotable",array("volumes" => $pool["volumes"])); ?>
<?php } ?>
<p><a href="../">Back</a></p>