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

<table>
	<tr>		
		<th>Name</th>
		<th>State</th>
		<th>Capacity</th>
		<th>Allocation</th>
		<th>Available</th>
	</tr>
	<tr>
		<td><?php echo $pool["name"]; ?></td>	
		<td><?php echo $pool["state"]; ?></td>	
		<td><?php echo $pool["capacity"]; ?></td>	
		<td><?php echo $pool["allocation"]; ?></td>	
		<td><?php echo $pool["available"]; ?></td>	
	</tr>
</table>