<div class="classcontentcomments view">
<h2><?php  echo __('Classcontentcomment'); ?></h2>
	<dl>
		<dt><?php echo __('Id'); ?></dt>
		<dd>
			<?php echo h($classcontentcomment['Classcontentcomment']['id']); ?>
			&nbsp;
		</dd>
		<dt><?php echo __('Classcontent'); ?></dt>
		<dd>
			<?php echo $this->Html->link($classcontentcomment['Classcontent']['title'], array('controller' => 'classcontents', 'action' => 'view', $classcontentcomment['Classcontent']['id'])); ?>
			&nbsp;
		</dd>
		<dt><?php echo __('User'); ?></dt>
		<dd>
			<?php echo $this->Html->link($classcontentcomment['User']['id'], array('controller' => 'users', 'action' => 'view', $classcontentcomment['User']['id'])); ?>
			&nbsp;
		</dd>
		<dt><?php echo __('Crtclass'); ?></dt>
		<dd>
			<?php echo $this->Html->link($classcontentcomment['Crtclass']['name'], array('controller' => 'crtclasses', 'action' => 'view', $classcontentcomment['Crtclass']['id'])); ?>
			&nbsp;
		</dd>
		<dt><?php echo __('Comment'); ?></dt>
		<dd>
			<?php echo h($classcontentcomment['Classcontentcomment']['comment']); ?>
			&nbsp;
		</dd>
		<dt><?php echo __('Created'); ?></dt>
		<dd>
			<?php echo h($classcontentcomment['Classcontentcomment']['created']); ?>
			&nbsp;
		</dd>
		<dt><?php echo __('Parent Classcontentcomment'); ?></dt>
		<dd>
			<?php echo $this->Html->link($classcontentcomment['ParentClasscontentcomment']['id'], array('controller' => 'classcontentcomments', 'action' => 'view', $classcontentcomment['ParentClasscontentcomment']['id'])); ?>
			&nbsp;
		</dd>
	</dl>
</div>
<div class="actions">
	<h3><?php echo __('Actions'); ?></h3>
	<ul>
		<li><?php echo $this->Html->link(__('Edit Classcontentcomment'), array('action' => 'edit', $classcontentcomment['Classcontentcomment']['id'])); ?> </li>
		<li><?php echo $this->Form->postLink(__('Delete Classcontentcomment'), array('action' => 'delete', $classcontentcomment['Classcontentcomment']['id']), null, __('Are you sure you want to delete # %s?', $classcontentcomment['Classcontentcomment']['id'])); ?> </li>
		<li><?php echo $this->Html->link(__('List Classcontentcomments'), array('action' => 'index')); ?> </li>
		<li><?php echo $this->Html->link(__('New Classcontentcomment'), array('action' => 'add')); ?> </li>
		<li><?php echo $this->Html->link(__('List Classcontents'), array('controller' => 'classcontents', 'action' => 'index')); ?> </li>
		<li><?php echo $this->Html->link(__('New Classcontent'), array('controller' => 'classcontents', '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 Classcontentcomments'), array('controller' => 'classcontentcomments', 'action' => 'index')); ?> </li>
		<li><?php echo $this->Html->link(__('New Parent Classcontentcomment'), array('controller' => 'classcontentcomments', 'action' => 'add')); ?> </li>
	</ul>
</div>
<div class="related">
	<h3><?php echo __('Related Classcontentcomments'); ?></h3>
	<?php if (!empty($classcontentcomment['ChildClasscontentcomment'])): ?>
	<table cellpadding = "0" cellspacing = "0">
	<tr>
		<th><?php echo __('Id'); ?></th>
		<th><?php echo __('Classcontent Id'); ?></th>
		<th><?php echo __('User Id'); ?></th>
		<th><?php echo __('Crtclass Id'); ?></th>
		<th><?php echo __('Comment'); ?></th>
		<th><?php echo __('Created'); ?></th>
		<th><?php echo __('Parent Id'); ?></th>
		<th class="actions"><?php echo __('Actions'); ?></th>
	</tr>
	<?php
		$i = 0;
		foreach ($classcontentcomment['ChildClasscontentcomment'] as $childClasscontentcomment): ?>
		<tr>
			<td><?php echo $childClasscontentcomment['id']; ?></td>
			<td><?php echo $childClasscontentcomment['classcontent_id']; ?></td>
			<td><?php echo $childClasscontentcomment['user_id']; ?></td>
			<td><?php echo $childClasscontentcomment['crtclass_id']; ?></td>
			<td><?php echo $childClasscontentcomment['comment']; ?></td>
			<td><?php echo $childClasscontentcomment['created']; ?></td>
			<td><?php echo $childClasscontentcomment['parent_id']; ?></td>
			<td class="actions">
				<?php echo $this->Html->link(__('View'), array('controller' => 'classcontentcomments', 'action' => 'view', $childClasscontentcomment['id'])); ?>
				<?php echo $this->Html->link(__('Edit'), array('controller' => 'classcontentcomments', 'action' => 'edit', $childClasscontentcomment['id'])); ?>
				<?php echo $this->Form->postLink(__('Delete'), array('controller' => 'classcontentcomments', 'action' => 'delete', $childClasscontentcomment['id']), null, __('Are you sure you want to delete # %s?', $childClasscontentcomment['id'])); ?>
			</td>
		</tr>
	<?php endforeach; ?>
	</table>
<?php endif; ?>

	<div class="actions">
		<ul>
			<li><?php echo $this->Html->link(__('New Child Classcontentcomment'), array('controller' => 'classcontentcomments', 'action' => 'add')); ?> </li>
		</ul>
	</div>
</div>
