view app/views/storage/exec.ctp @ 4:c3adb28473d6 default tip

modified icon feature
author Shoshi TAMAKI <shoshi@cr.ie.u-ryukyu.ac.jp>
date Tue, 16 Aug 2011 18:31:36 +0900
parents eb4fee3d9bb8
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>