<div class="wishlists view">
<h2><?php  echo __('Wishlist'); ?></h2>
	<dl>
		<dt><?php echo __('Id'); ?></dt>
		<dd>
			<?php echo h($wishlist['Wishlist']['id']); ?>
			&nbsp;
		</dd>
		<dt><?php echo __('Course'); ?></dt>
		<dd>
			<?php echo $this->Html->link($wishlist['Course']['id'], array('controller' => 'courses', 'action' => 'view', $wishlist['Course']['id'])); ?>
			&nbsp;
		</dd>
		<dt><?php echo __('Profile Id'); ?></dt>
		<dd>
			<?php echo h($wishlist['Wishlist']['profile_id']); ?>
			&nbsp;
		</dd>
		<dt><?php echo __('Status'); ?></dt>
		<dd>
			<?php echo h($wishlist['Wishlist']['status']); ?>
			&nbsp;
		</dd>
	</dl>
</div>
<div class="actions">
	<h3><?php echo __('Actions'); ?></h3>
	<ul>
		<li><?php echo $this->Html->link(__('Edit Wishlist'), array('action' => 'edit', $wishlist['Wishlist']['id'])); ?> </li>
		<li><?php echo $this->Form->postLink(__('Delete Wishlist'), array('action' => 'delete', $wishlist['Wishlist']['id']), null, __('Are you sure you want to delete # %s?', $wishlist['Wishlist']['id'])); ?> </li>
		<li><?php echo $this->Html->link(__('List Wishlists'), array('action' => 'index')); ?> </li>
		<li><?php echo $this->Html->link(__('New Wishlist'), array('action' => 'add')); ?> </li>
		<li><?php echo $this->Html->link(__('List Courses'), array('controller' => 'courses', 'action' => 'index')); ?> </li>
		<li><?php echo $this->Html->link(__('New Course'), array('controller' => 'courses', 'action' => 'add')); ?> </li>
	</ul>
</div>
