<div class="gradesettings view">
<h2><?php  echo __('Gradesetting'); ?></h2>
	<dl>
		<dt><?php echo __('Id'); ?></dt>
		<dd>
			<?php echo h($gradesetting['Gradesetting']['id']); ?>
			&nbsp;
		</dd>
		<dt><?php echo __('Assignment'); ?></dt>
		<dd>
			<?php echo $this->Html->link($gradesetting['Assignment']['title'], array('controller' => 'assignments', 'action' => 'view', $gradesetting['Assignment']['id'])); ?>
			&nbsp;
		</dd>
		<dt><?php echo __('Score'); ?></dt>
		<dd>
			<?php echo h($gradesetting['Gradesetting']['score']); ?>
			&nbsp;
		</dd>
		<dt><?php echo __('Created'); ?></dt>
		<dd>
			<?php echo h($gradesetting['Gradesetting']['created']); ?>
			&nbsp;
		</dd>
	</dl>
</div>
<div class="actions">
	<h3><?php echo __('Actions'); ?></h3>
	<ul>
		<li><?php echo $this->Html->link(__('Edit Gradesetting'), array('action' => 'edit', $gradesetting['Gradesetting']['id'])); ?> </li>
		<li><?php echo $this->Form->postLink(__('Delete Gradesetting'), array('action' => 'delete', $gradesetting['Gradesetting']['id']), null, __('Are you sure you want to delete # %s?', $gradesetting['Gradesetting']['id'])); ?> </li>
		<li><?php echo $this->Html->link(__('List Gradesettings'), array('action' => 'index')); ?> </li>
		<li><?php echo $this->Html->link(__('New Gradesetting'), 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>
	</ul>
</div>
