<div class="contentcomments view">
<h2><?php  echo __('Contentcomment'); ?></h2>
	<dl>
		<dt><?php echo __('Id'); ?></dt>
		<dd>
			<?php echo h($contentcomment['Contentcomment']['id']); ?>
			&nbsp;
		</dd>
		<dt><?php echo __('Content'); ?></dt>
		<dd>
			<?php echo $this->Html->link($contentcomment['Content']['title'], array('controller' => 'contents', 'action' => 'view', $contentcomment['Content']['id'])); ?>
			&nbsp;
		</dd>
		<dt><?php echo __('User'); ?></dt>
		<dd>
			<?php echo $this->Html->link($contentcomment['User']['id'], array('controller' => 'users', 'action' => 'view', $contentcomment['User']['id'])); ?>
			&nbsp;
		</dd>
		<dt><?php echo __('Comment'); ?></dt>
		<dd>
			<?php echo h($contentcomment['Contentcomment']['comment']); ?>
			&nbsp;
		</dd>
		<dt><?php echo __('Created'); ?></dt>
		<dd>
			<?php echo h($contentcomment['Contentcomment']['created']); ?>
			&nbsp;
		</dd>
		<dt><?php echo __('Parent Contentcomment'); ?></dt>
		<dd>
			<?php echo $this->Html->link($contentcomment['ParentContentcomment']['id'], array('controller' => 'contentcomments', 'action' => 'view', $contentcomment['ParentContentcomment']['id'])); ?>
			&nbsp;
		</dd>
	</dl>
</div>
<div class="actions">
	<h3><?php echo __('Actions'); ?></h3>
	<ul>
		<li><?php echo $this->Html->link(__('Edit Contentcomment'), array('action' => 'edit', $contentcomment['Contentcomment']['id'])); ?> </li>
		<li><?php echo $this->Form->postLink(__('Delete Contentcomment'), array('action' => 'delete', $contentcomment['Contentcomment']['id']), null, __('Are you sure you want to delete # %s?', $contentcomment['Contentcomment']['id'])); ?> </li>
		<li><?php echo $this->Html->link(__('List Contentcomments'), array('action' => 'index')); ?> </li>
		<li><?php echo $this->Html->link(__('New Contentcomment'), array('action' => 'add')); ?> </li>
		<li><?php echo $this->Html->link(__('List Contents'), array('controller' => 'contents', 'action' => 'index')); ?> </li>
		<li><?php echo $this->Html->link(__('New Content'), array('controller' => 'contents', '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 Contentcomments'), array('controller' => 'contentcomments', 'action' => 'index')); ?> </li>
		<li><?php echo $this->Html->link(__('New Parent Contentcomment'), array('controller' => 'contentcomments', 'action' => 'add')); ?> </li>
		<li><?php echo $this->Html->link(__('List Contentcommentlikes'), array('controller' => 'contentcommentlikes', 'action' => 'index')); ?> </li>
		<li><?php echo $this->Html->link(__('New Contentcommentlike'), array('controller' => 'contentcommentlikes', 'action' => 'add')); ?> </li>
	</ul>
</div>
<div class="related">
	<h3><?php echo __('Related Contentcommentlikes'); ?></h3>
	<?php if (!empty($contentcomment['Contentcommentlike'])): ?>
	<table cellpadding = "0" cellspacing = "0">
	<tr>
		<th><?php echo __('Id'); ?></th>
		<th><?php echo __('Contentcomment Id'); ?></th>
		<th><?php echo __('User Id'); ?></th>
		<th><?php echo __('Created'); ?></th>
		<th><?php echo __('Status'); ?></th>
		<th class="actions"><?php echo __('Actions'); ?></th>
	</tr>
	<?php
		$i = 0;
		foreach ($contentcomment['Contentcommentlike'] as $contentcommentlike): ?>
		<tr>
			<td><?php echo $contentcommentlike['id']; ?></td>
			<td><?php echo $contentcommentlike['contentcomment_id']; ?></td>
			<td><?php echo $contentcommentlike['user_id']; ?></td>
			<td><?php echo $contentcommentlike['created']; ?></td>
			<td><?php echo $contentcommentlike['status']; ?></td>
			<td class="actions">
				<?php echo $this->Html->link(__('View'), array('controller' => 'contentcommentlikes', 'action' => 'view', $contentcommentlike['id'])); ?>
				<?php echo $this->Html->link(__('Edit'), array('controller' => 'contentcommentlikes', 'action' => 'edit', $contentcommentlike['id'])); ?>
				<?php echo $this->Form->postLink(__('Delete'), array('controller' => 'contentcommentlikes', 'action' => 'delete', $contentcommentlike['id']), null, __('Are you sure you want to delete # %s?', $contentcommentlike['id'])); ?>
			</td>
		</tr>
	<?php endforeach; ?>
	</table>
<?php endif; ?>

	<div class="actions">
		<ul>
			<li><?php echo $this->Html->link(__('New Contentcommentlike'), array('controller' => 'contentcommentlikes', 'action' => 'add')); ?> </li>
		</ul>
	</div>
</div>
<div class="related">
	<h3><?php echo __('Related Contentcomments'); ?></h3>
	<?php if (!empty($contentcomment['ChildContentcomment'])): ?>
	<table cellpadding = "0" cellspacing = "0">
	<tr>
		<th><?php echo __('Id'); ?></th>
		<th><?php echo __('Content Id'); ?></th>
		<th><?php echo __('User 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 ($contentcomment['ChildContentcomment'] as $childContentcomment): ?>
		<tr>
			<td><?php echo $childContentcomment['id']; ?></td>
			<td><?php echo $childContentcomment['content_id']; ?></td>
			<td><?php echo $childContentcomment['user_id']; ?></td>
			<td><?php echo $childContentcomment['comment']; ?></td>
			<td><?php echo $childContentcomment['created']; ?></td>
			<td><?php echo $childContentcomment['parent_id']; ?></td>
			<td class="actions">
				<?php echo $this->Html->link(__('View'), array('controller' => 'contentcomments', 'action' => 'view', $childContentcomment['id'])); ?>
				<?php echo $this->Html->link(__('Edit'), array('controller' => 'contentcomments', 'action' => 'edit', $childContentcomment['id'])); ?>
				<?php echo $this->Form->postLink(__('Delete'), array('controller' => 'contentcomments', 'action' => 'delete', $childContentcomment['id']), null, __('Are you sure you want to delete # %s?', $childContentcomment['id'])); ?>
			</td>
		</tr>
	<?php endforeach; ?>
	</table>
<?php endif; ?>

	<div class="actions">
		<ul>
			<li><?php echo $this->Html->link(__('New Child Contentcomment'), array('controller' => 'contentcomments', 'action' => 'add')); ?> </li>
		</ul>
	</div>
</div>
