<div class="assignmentgroups view">
<h2><?php  echo __('Assignmentgroup'); ?></h2>
	<dl>
		<dt><?php echo __('Id'); ?></dt>
		<dd>
			<?php echo h($assignmentgroup['Assignmentgroup']['id']); ?>
			&nbsp;
		</dd>
		<dt><?php echo __('Assignment'); ?></dt>
		<dd>
			<?php echo $this->Html->link($assignmentgroup['Assignment']['title'], array('controller' => 'assignments', 'action' => 'view', $assignmentgroup['Assignment']['id'])); ?>
			&nbsp;
		</dd>
		<dt><?php echo __('User'); ?></dt>
		<dd>
			<?php echo $this->Html->link($assignmentgroup['User']['name'], array('controller' => 'users', 'action' => 'view', $assignmentgroup['User']['id'])); ?>
			&nbsp;
		</dd>
	</dl>
</div>
<div class="actions">
	<h3><?php echo __('Actions'); ?></h3>
	<ul>
		<li><?php echo $this->Html->link(__('Edit Assignmentgroup'), array('action' => 'edit', $assignmentgroup['Assignmentgroup']['id'])); ?> </li>
		<li><?php echo $this->Form->postLink(__('Delete Assignmentgroup'), array('action' => 'delete', $assignmentgroup['Assignmentgroup']['id']), null, __('Are you sure you want to delete # %s?', $assignmentgroup['Assignmentgroup']['id'])); ?> </li>
		<li><?php echo $this->Html->link(__('List Assignmentgroups'), array('action' => 'index')); ?> </li>
		<li><?php echo $this->Html->link(__('New Assignmentgroup'), array('action' => 'add')); ?> </li>
		<li><?php echo $this->Html->link(__('List Assignments'), array('controller' => 'assignments', 'action' => 'index')); ?> </li>
		<li><?php echo $this->Html->link(__('New Assignment'), array('controller' => 'assignments', '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>
	</ul>
</div>
