<div class="lettergrades view">
<h2><?php  echo __('Lettergrade'); ?></h2>
	<dl>
		<dt><?php echo __('Id'); ?></dt>
		<dd>
			<?php echo h($lettergrade['Lettergrade']['id']); ?>
			&nbsp;
		</dd>
		<dt><?php echo __('Crtclass'); ?></dt>
		<dd>
			<?php echo $this->Html->link($lettergrade['Crtclass']['name'], array('controller' => 'crtclasses', 'action' => 'view', $lettergrade['Crtclass']['id'])); ?>
			&nbsp;
		</dd>
		<dt><?php echo __('Grade'); ?></dt>
		<dd>
			<?php echo h($lettergrade['Lettergrade']['grade']); ?>
			&nbsp;
		</dd>
		<dt><?php echo __('Frm'); ?></dt>
		<dd>
			<?php echo h($lettergrade['Lettergrade']['frm']); ?>
			&nbsp;
		</dd>
		<dt><?php echo __('To'); ?></dt>
		<dd>
			<?php echo h($lettergrade['Lettergrade']['to']); ?>
			&nbsp;
		</dd>
	</dl>
</div>
<div class="actions">
	<h3><?php echo __('Actions'); ?></h3>
	<ul>
		<li><?php echo $this->Html->link(__('Edit Lettergrade'), array('action' => 'edit', $lettergrade['Lettergrade']['id'])); ?> </li>
		<li><?php echo $this->Form->postLink(__('Delete Lettergrade'), array('action' => 'delete', $lettergrade['Lettergrade']['id']), null, __('Are you sure you want to delete # %s?', $lettergrade['Lettergrade']['id'])); ?> </li>
		<li><?php echo $this->Html->link(__('List Lettergrades'), array('action' => 'index')); ?> </li>
		<li><?php echo $this->Html->link(__('New Lettergrade'), array('action' => 'add')); ?> </li>
		<li><?php echo $this->Html->link(__('List Crtclasses'), array('controller' => 'crtclasses', 'action' => 'index')); ?> </li>
		<li><?php echo $this->Html->link(__('New Crtclass'), array('controller' => 'crtclasses', 'action' => 'add')); ?> </li>
	</ul>
</div>
