<div class="friendrequests view">
<h2><?php  echo __('Friendrequest'); ?></h2>
	<dl>
		<dt><?php echo __('Id'); ?></dt>
		<dd>
			<?php echo h($friendrequest['Friendrequest']['id']); ?>
			&nbsp;
		</dd>
		<dt><?php echo __('RequestFrom'); ?></dt>
		<dd>
			<?php echo h($friendrequest['Friendrequest']['requestFrom']); ?>
			&nbsp;
		</dd>
		<dt><?php echo __('RequestTo'); ?></dt>
		<dd>
			<?php echo h($friendrequest['Friendrequest']['requestTo']); ?>
			&nbsp;
		</dd>
		<dt><?php echo __('Status'); ?></dt>
		<dd>
			<?php echo h($friendrequest['Friendrequest']['status']); ?>
			&nbsp;
		</dd>
		<dt><?php echo __('Created'); ?></dt>
		<dd>
			<?php echo h($friendrequest['Friendrequest']['created']); ?>
			&nbsp;
		</dd>
	</dl>
</div>
<div class="actions">
	<h3><?php echo __('Actions'); ?></h3>
	<ul>
		<li><?php echo $this->Html->link(__('Edit Friendrequest'), array('action' => 'edit', $friendrequest['Friendrequest']['id'])); ?> </li>
		<li><?php echo $this->Form->postLink(__('Delete Friendrequest'), array('action' => 'delete', $friendrequest['Friendrequest']['id']), null, __('Are you sure you want to delete # %s?', $friendrequest['Friendrequest']['id'])); ?> </li>
		<li><?php echo $this->Html->link(__('List Friendrequests'), array('action' => 'index')); ?> </li>
		<li><?php echo $this->Html->link(__('New Friendrequest'), array('action' => 'add')); ?> </li>
	</ul>
</div>
