<div class="classwikies view">
<h2><?php  echo __('Classwiky'); ?></h2>
	<dl>
		<dt><?php echo __('Id'); ?></dt>
		<dd>
			<?php echo h($classwiky['Classwiky']['id']); ?>
			&nbsp;
		</dd>
		<dt><?php echo __('User'); ?></dt>
		<dd>
			<?php echo $this->Html->link($classwiky['User']['id'], array('controller' => 'users', 'action' => 'view', $classwiky['User']['id'])); ?>
			&nbsp;
		</dd>
		<dt><?php echo __('Crtclass'); ?></dt>
		<dd>
			<?php echo $this->Html->link($classwiky['Crtclass']['name'], array('controller' => 'crtclasses', 'action' => 'view', $classwiky['Crtclass']['id'])); ?>
			&nbsp;
		</dd>
		<dt><?php echo __('Title'); ?></dt>
		<dd>
			<?php echo h($classwiky['Classwiky']['title']); ?>
			&nbsp;
		</dd>
		<dt><?php echo __('Slug'); ?></dt>
		<dd>
			<?php echo h($classwiky['Classwiky']['slug']); ?>
			&nbsp;
		</dd>
		<dt><?php echo __('Status'); ?></dt>
		<dd>
			<?php echo h($classwiky['Classwiky']['status']); ?>
			&nbsp;
		</dd>
		<dt><?php echo __('Created'); ?></dt>
		<dd>
			<?php echo h($classwiky['Classwiky']['created']); ?>
			&nbsp;
		</dd>
	</dl>
</div>
<div class="actions">
	<h3><?php echo __('Actions'); ?></h3>
	<ul>
		<li><?php echo $this->Html->link(__('Edit Classwiky'), array('action' => 'edit', $classwiky['Classwiky']['id'])); ?> </li>
		<li><?php echo $this->Form->postLink(__('Delete Classwiky'), array('action' => 'delete', $classwiky['Classwiky']['id']), null, __('Are you sure you want to delete # %s?', $classwiky['Classwiky']['id'])); ?> </li>
		<li><?php echo $this->Html->link(__('List Classwikies'), array('action' => 'index')); ?> </li>
		<li><?php echo $this->Html->link(__('New Classwiky'), 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>
		<li><?php echo $this->Html->link(__('List Crtclasses'), array('controller' => 'crtclasses', 'action' => 'index')); ?> </li>
		<li><?php echo $this->Html->link(__('New Crtclass'), array('controller' => 'crtclasses', 'action' => 'add')); ?> </li>
		<li><?php echo $this->Html->link(__('List Classwikidetails'), array('controller' => 'classwikidetails', 'action' => 'index')); ?> </li>
		<li><?php echo $this->Html->link(__('New Classwikidetail'), array('controller' => 'classwikidetails', 'action' => 'add')); ?> </li>
	</ul>
</div>
<div class="related">
	<h3><?php echo __('Related Classwikidetails'); ?></h3>
	<?php if (!empty($classwiky['Classwikidetail'])): ?>
	<table cellpadding = "0" cellspacing = "0">
	<tr>
		<th><?php echo __('Id'); ?></th>
		<th><?php echo __('Classwiky Id'); ?></th>
		<th><?php echo __('Title'); ?></th>
		<th><?php echo __('Description'); ?></th>
		<th class="actions"><?php echo __('Actions'); ?></th>
	</tr>
	<?php
		$i = 0;
		foreach ($classwiky['Classwikidetail'] as $classwikidetail): ?>
		<tr>
			<td><?php echo $classwikidetail['id']; ?></td>
			<td><?php echo $classwikidetail['classwiky_id']; ?></td>
			<td><?php echo $classwikidetail['title']; ?></td>
			<td><?php echo $classwikidetail['description']; ?></td>
			<td class="actions">
				<?php echo $this->Html->link(__('View'), array('controller' => 'classwikidetails', 'action' => 'view', $classwikidetail['id'])); ?>
				<?php echo $this->Html->link(__('Edit'), array('controller' => 'classwikidetails', 'action' => 'edit', $classwikidetail['id'])); ?>
				<?php echo $this->Form->postLink(__('Delete'), array('controller' => 'classwikidetails', 'action' => 'delete', $classwikidetail['id']), null, __('Are you sure you want to delete # %s?', $classwikidetail['id'])); ?>
			</td>
		</tr>
	<?php endforeach; ?>
	</table>
<?php endif; ?>

	<div class="actions">
		<ul>
			<li><?php echo $this->Html->link(__('New Classwikidetail'), array('controller' => 'classwikidetails', 'action' => 'add')); ?> </li>
		</ul>
	</div>
</div>
