<div class="wikidetails view">
<h2><?php  echo __('Wikidetail'); ?></h2>
	<dl>
		<dt><?php echo __('Id'); ?></dt>
		<dd>
			<?php echo h($wikidetail['Wikidetail']['id']); ?>
			&nbsp;
		</dd>
		<dt><?php echo __('Wiky'); ?></dt>
		<dd>
			<?php echo $this->Html->link($wikidetail['Wiky']['title'], array('controller' => 'wikies', 'action' => 'view', $wikidetail['Wiky']['id'])); ?>
			&nbsp;
		</dd>
		<dt><?php echo __('Title'); ?></dt>
		<dd>
			<?php echo h($wikidetail['Wikidetail']['title']); ?>
			&nbsp;
		</dd>
		<dt><?php echo __('Content'); ?></dt>
		<dd>
			<?php echo h($wikidetail['Wikidetail']['content']); ?>
			&nbsp;
		</dd>
	</dl>
</div>
<div class="actions">
	<h3><?php echo __('Actions'); ?></h3>
	<ul>
		<li><?php echo $this->Html->link(__('Edit Wikidetail'), array('action' => 'edit', $wikidetail['Wikidetail']['id'])); ?> </li>
		<li><?php echo $this->Form->postLink(__('Delete Wikidetail'), array('action' => 'delete', $wikidetail['Wikidetail']['id']), null, __('Are you sure you want to delete # %s?', $wikidetail['Wikidetail']['id'])); ?> </li>
		<li><?php echo $this->Html->link(__('List Wikidetails'), array('action' => 'index')); ?> </li>
		<li><?php echo $this->Html->link(__('New Wikidetail'), array('action' => 'add')); ?> </li>
		<li><?php echo $this->Html->link(__('List Wikies'), array('controller' => 'wikies', 'action' => 'index')); ?> </li>
		<li><?php echo $this->Html->link(__('New Wiky'), array('controller' => 'wikies', 'action' => 'add')); ?> </li>
	</ul>
</div>
