<div class="studentgrades form">
	<?php echo $this->Form->create('Studentgrade'); ?>
	<fieldset>
		<legend><?php echo __('Add Studentgrade'); ?></legend>
				<?php
		echo $this->Form->input('course_id');
		echo $this->Form->input('profile_id');
		echo $this->Form->input('midgrade');
		echo $this->Form->input('finalgrade');
		echo $this->Form->input('status');
	?>
	</fieldset>
	<?php echo $this->Form->end(__('Submit')); ?>
</div>

