<div class="courseroles view">
<h2><?php  echo __('Courserole'); ?></h2>
	<dl>
		<dt><?php echo __('Id'); ?></dt>
		<dd>
			<?php echo h($courserole['Courserole']['id']); ?>
			&nbsp;
		</dd>
		<dt><?php echo __('Course'); ?></dt>
		<dd>
			<?php echo $this->Html->link($courserole['Course']['id'], array('controller' => 'courses', 'action' => 'view', $courserole['Course']['id'])); ?>
			&nbsp;
		</dd>
		<dt><?php echo __('Profile'); ?></dt>
		<dd>
			<?php echo $this->Html->link($courserole['Profile']['id'], array('controller' => 'profiles', 'action' => 'view', $courserole['Profile']['id'])); ?>
			&nbsp;
		</dd>
		<dt><?php echo __('Role'); ?></dt>
		<dd>
			<?php echo h($courserole['Courserole']['role']); ?>
			&nbsp;
		</dd>
		<dt><?php echo __('Created'); ?></dt>
		<dd>
			<?php echo h($courserole['Courserole']['created']); ?>
			&nbsp;
		</dd>
		<dt><?php echo __('WDt'); ?></dt>
		<dd>
			<?php echo h($courserole['Courserole']['wDt']); ?>
			&nbsp;
		</dd>
		<dt><?php echo __('Status'); ?></dt>
		<dd>
			<?php echo h($courserole['Courserole']['status']); ?>
			&nbsp;
		</dd>
	</dl>
</div>
<div class="actions">
	<h3><?php echo __('Actions'); ?></h3>
	<ul>
		<li><?php echo $this->Html->link(__('Edit Courserole'), array('action' => 'edit', $courserole['Courserole']['id'])); ?> </li>
		<li><?php echo $this->Form->postLink(__('Delete Courserole'), array('action' => 'delete', $courserole['Courserole']['id']), null, __('Are you sure you want to delete # %s?', $courserole['Courserole']['id'])); ?> </li>
		<li><?php echo $this->Html->link(__('List Courseroles'), array('action' => 'index')); ?> </li>
		<li><?php echo $this->Html->link(__('New Courserole'), 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>
		<li><?php echo $this->Html->link(__('List Profiles'), array('controller' => 'profiles', 'action' => 'index')); ?> </li>
		<li><?php echo $this->Html->link(__('New Profile'), array('controller' => 'profiles', 'action' => 'add')); ?> </li>
	</ul>
</div>
