<div class="clouds view">
<h2><?php  echo __('Cloud'); ?></h2>
	<dl>
		<dt><?php echo __('Id'); ?></dt>
		<dd>
			<?php echo h($cloud['Cloud']['id']); ?>
			&nbsp;
		</dd>
		<dt><?php echo __('User'); ?></dt>
		<dd>
			<?php echo $this->Html->link($cloud['User']['id'], array('controller' => 'users', 'action' => 'view', $cloud['User']['id'])); ?>
			&nbsp;
		</dd>
		<dt><?php echo __('Name'); ?></dt>
		<dd>
			<?php echo h($cloud['Cloud']['name']); ?>
			&nbsp;
		</dd>
		<dt><?php echo __('Created'); ?></dt>
		<dd>
			<?php echo h($cloud['Cloud']['created']); ?>
			&nbsp;
		</dd>
		<dt><?php echo __('Modified'); ?></dt>
		<dd>
			<?php echo h($cloud['Cloud']['modified']); ?>
			&nbsp;
		</dd>
	</dl>
</div>
<div class="actions">
	<h3><?php echo __('Actions'); ?></h3>
	<ul>
		<li><?php echo $this->Html->link(__('Edit Cloud'), array('action' => 'edit', $cloud['Cloud']['id'])); ?> </li>
		<li><?php echo $this->Form->postLink(__('Delete Cloud'), array('action' => 'delete', $cloud['Cloud']['id']), null, __('Are you sure you want to delete # %s?', $cloud['Cloud']['id'])); ?> </li>
		<li><?php echo $this->Html->link(__('List Clouds'), array('action' => 'index')); ?> </li>
		<li><?php echo $this->Html->link(__('New Cloud'), array('action' => 'add')); ?> </li>
		<li><?php echo $this->Html->link(__('List Users'), array('controller' => 'users', 'action' => 'index')); ?> </li>
		<li><?php echo $this->Html->link(__('New User'), array('controller' => 'users', 'action' => 'add')); ?> </li>
	</ul>
</div>
