<div class="coursecategories view">
<h2><?php  echo __('Coursecategory'); ?></h2>
	<dl>
		<dt><?php echo __('Id'); ?></dt>
		<dd>
			<?php echo h($coursecategory['Coursecategory']['id']); ?>
			&nbsp;
		</dd>
		<dt><?php echo __('Name'); ?></dt>
		<dd>
			<?php echo h($coursecategory['Coursecategory']['name']); ?>
			&nbsp;
		</dd>
		<dt><?php echo __('Slug'); ?></dt>
		<dd>
			<?php echo h($coursecategory['Coursecategory']['slug']); ?>
			&nbsp;
		</dd>
		<dt><?php echo __('Seq'); ?></dt>
		<dd>
			<?php echo h($coursecategory['Coursecategory']['seq']); ?>
			&nbsp;
		</dd>
		<dt><?php echo __('Type'); ?></dt>
		<dd>
			<?php echo h($coursecategory['Coursecategory']['type']); ?>
			&nbsp;
		</dd>
		<dt><?php echo __('Status'); ?></dt>
		<dd>
			<?php echo h($coursecategory['Coursecategory']['status']); ?>
			&nbsp;
		</dd>
	</dl>
</div>
<div class="actions">
	<h3><?php echo __('Actions'); ?></h3>
	<ul>
		<li><?php echo $this->Html->link(__('Edit Coursecategory'), array('action' => 'edit', $coursecategory['Coursecategory']['id'])); ?> </li>
		<li><?php echo $this->Form->postLink(__('Delete Coursecategory'), array('action' => 'delete', $coursecategory['Coursecategory']['id']), null, __('Are you sure you want to delete # %s?', $coursecategory['Coursecategory']['id'])); ?> </li>
		<li><?php echo $this->Html->link(__('List Coursecategories'), array('action' => 'index')); ?> </li>
		<li><?php echo $this->Html->link(__('New Coursecategory'), array('action' => 'add')); ?> </li>
	</ul>
</div>
