<div class="returnfeedbacks view">
<h2><?php  echo __('Returnfeedback'); ?></h2>
	<dl>
		<dt><?php echo __('Id'); ?></dt>
		<dd>
			<?php echo h($returnfeedback['Returnfeedback']['id']); ?>
			&nbsp;
		</dd>
		<dt><?php echo __('Assignmentfeedback'); ?></dt>
		<dd>
			<?php echo $this->Html->link($returnfeedback['Assignmentfeedback']['id'], array('controller' => 'assignmentfeedbacks', 'action' => 'view', $returnfeedback['Assignmentfeedback']['id'])); ?>
			&nbsp;
		</dd>
		<dt><?php echo __('Profile'); ?></dt>
		<dd>
			<?php echo $this->Html->link($returnfeedback['Profile']['id'], array('controller' => 'profiles', 'action' => 'view', $returnfeedback['Profile']['id'])); ?>
			&nbsp;
		</dd>
		<dt><?php echo __('Type'); ?></dt>
		<dd>
			<?php echo h($returnfeedback['Returnfeedback']['type']); ?>
			&nbsp;
		</dd>
		<dt><?php echo __('Feedback'); ?></dt>
		<dd>
			<?php echo h($returnfeedback['Returnfeedback']['feedback']); ?>
			&nbsp;
		</dd>
		<dt><?php echo __('Created'); ?></dt>
		<dd>
			<?php echo h($returnfeedback['Returnfeedback']['created']); ?>
			&nbsp;
		</dd>
		<dt><?php echo __('Seq'); ?></dt>
		<dd>
			<?php echo h($returnfeedback['Returnfeedback']['seq']); ?>
			&nbsp;
		</dd>
		<dt><?php echo __('Parent Returnfeedback'); ?></dt>
		<dd>
			<?php echo $this->Html->link($returnfeedback['ParentReturnfeedback']['id'], array('controller' => 'returnfeedbacks', 'action' => 'view', $returnfeedback['ParentReturnfeedback']['id'])); ?>
			&nbsp;
		</dd>
		<dt><?php echo __('Feedbackallowed'); ?></dt>
		<dd>
			<?php echo h($returnfeedback['Returnfeedback']['feedbackallowed']); ?>
			&nbsp;
		</dd>
	</dl>
</div>
<div class="actions">
	<h3><?php echo __('Actions'); ?></h3>
	<ul>
		<li><?php echo $this->Html->link(__('Edit Returnfeedback'), array('action' => 'edit', $returnfeedback['Returnfeedback']['id'])); ?> </li>
		<li><?php echo $this->Form->postLink(__('Delete Returnfeedback'), array('action' => 'delete', $returnfeedback['Returnfeedback']['id']), null, __('Are you sure you want to delete # %s?', $returnfeedback['Returnfeedback']['id'])); ?> </li>
		<li><?php echo $this->Html->link(__('List Returnfeedbacks'), array('action' => 'index')); ?> </li>
		<li><?php echo $this->Html->link(__('New Returnfeedback'), array('action' => 'add')); ?> </li>
		<li><?php echo $this->Html->link(__('List Assignmentfeedbacks'), array('controller' => 'assignmentfeedbacks', 'action' => 'index')); ?> </li>
		<li><?php echo $this->Html->link(__('New Assignmentfeedback'), array('controller' => 'assignmentfeedbacks', 'action' => 'add')); ?> </li>
		<li><?php echo $this->Html->link(__('List Profiles'), array('controller' => 'profiles', 'action' => 'index')); ?> </li>
		<li><?php echo $this->Html->link(__('New Profile'), array('controller' => 'profiles', 'action' => 'add')); ?> </li>
		<li><?php echo $this->Html->link(__('List Returnfeedbacks'), array('controller' => 'returnfeedbacks', 'action' => 'index')); ?> </li>
		<li><?php echo $this->Html->link(__('New Parent Returnfeedback'), array('controller' => 'returnfeedbacks', 'action' => 'add')); ?> </li>
		<li><?php echo $this->Html->link(__('List Returnfeedbackdetails'), array('controller' => 'returnfeedbackdetails', 'action' => 'index')); ?> </li>
		<li><?php echo $this->Html->link(__('New Returnfeedbackdetail'), array('controller' => 'returnfeedbackdetails', 'action' => 'add')); ?> </li>
	</ul>
</div>
<div class="related">
	<h3><?php echo __('Related Returnfeedbackdetails'); ?></h3>
	<?php if (!empty($returnfeedback['Returnfeedbackdetail'])): ?>
	<table cellpadding = "0" cellspacing = "0">
	<tr>
		<th><?php echo __('Id'); ?></th>
		<th><?php echo __('Returnfeedback Id'); ?></th>
		<th><?php echo __('Name'); ?></th>
		<th><?php echo __('Ext'); ?></th>
		<th class="actions"><?php echo __('Actions'); ?></th>
	</tr>
	<?php
		$i = 0;
		foreach ($returnfeedback['Returnfeedbackdetail'] as $returnfeedbackdetail): ?>
		<tr>
			<td><?php echo $returnfeedbackdetail['id']; ?></td>
			<td><?php echo $returnfeedbackdetail['returnfeedback_id']; ?></td>
			<td><?php echo $returnfeedbackdetail['name']; ?></td>
			<td><?php echo $returnfeedbackdetail['ext']; ?></td>
			<td class="actions">
				<?php echo $this->Html->link(__('View'), array('controller' => 'returnfeedbackdetails', 'action' => 'view', $returnfeedbackdetail['id'])); ?>
				<?php echo $this->Html->link(__('Edit'), array('controller' => 'returnfeedbackdetails', 'action' => 'edit', $returnfeedbackdetail['id'])); ?>
				<?php echo $this->Form->postLink(__('Delete'), array('controller' => 'returnfeedbackdetails', 'action' => 'delete', $returnfeedbackdetail['id']), null, __('Are you sure you want to delete # %s?', $returnfeedbackdetail['id'])); ?>
			</td>
		</tr>
	<?php endforeach; ?>
	</table>
<?php endif; ?>

	<div class="actions">
		<ul>
			<li><?php echo $this->Html->link(__('New Returnfeedbackdetail'), array('controller' => 'returnfeedbackdetails', 'action' => 'add')); ?> </li>
		</ul>
	</div>
</div>
<div class="related">
	<h3><?php echo __('Related Returnfeedbacks'); ?></h3>
	<?php if (!empty($returnfeedback['ChildReturnfeedback'])): ?>
	<table cellpadding = "0" cellspacing = "0">
	<tr>
		<th><?php echo __('Id'); ?></th>
		<th><?php echo __('Assignmentfeedback Id'); ?></th>
		<th><?php echo __('Profile Id'); ?></th>
		<th><?php echo __('Type'); ?></th>
		<th><?php echo __('Feedback'); ?></th>
		<th><?php echo __('Created'); ?></th>
		<th><?php echo __('Seq'); ?></th>
		<th><?php echo __('Parent Id'); ?></th>
		<th><?php echo __('Feedbackallowed'); ?></th>
		<th class="actions"><?php echo __('Actions'); ?></th>
	</tr>
	<?php
		$i = 0;
		foreach ($returnfeedback['ChildReturnfeedback'] as $childReturnfeedback): ?>
		<tr>
			<td><?php echo $childReturnfeedback['id']; ?></td>
			<td><?php echo $childReturnfeedback['assignmentfeedback_id']; ?></td>
			<td><?php echo $childReturnfeedback['profile_id']; ?></td>
			<td><?php echo $childReturnfeedback['type']; ?></td>
			<td><?php echo $childReturnfeedback['feedback']; ?></td>
			<td><?php echo $childReturnfeedback['created']; ?></td>
			<td><?php echo $childReturnfeedback['seq']; ?></td>
			<td><?php echo $childReturnfeedback['parent_id']; ?></td>
			<td><?php echo $childReturnfeedback['feedbackallowed']; ?></td>
			<td class="actions">
				<?php echo $this->Html->link(__('View'), array('controller' => 'returnfeedbacks', 'action' => 'view', $childReturnfeedback['id'])); ?>
				<?php echo $this->Html->link(__('Edit'), array('controller' => 'returnfeedbacks', 'action' => 'edit', $childReturnfeedback['id'])); ?>
				<?php echo $this->Form->postLink(__('Delete'), array('controller' => 'returnfeedbacks', 'action' => 'delete', $childReturnfeedback['id']), null, __('Are you sure you want to delete # %s?', $childReturnfeedback['id'])); ?>
			</td>
		</tr>
	<?php endforeach; ?>
	</table>
<?php endif; ?>

	<div class="actions">
		<ul>
			<li><?php echo $this->Html->link(__('New Child Returnfeedback'), array('controller' => 'returnfeedbacks', 'action' => 'add')); ?> </li>
		</ul>
	</div>
</div>
