<div class="studentscores form">
	<?php echo $this->Form->create('Studentscore'); ?>
	<fieldset>
		<legend><?php echo __('Edit Studentscore'); ?></legend>
				<?php
		echo $this->Form->input('id');
		echo $this->Form->input('assignment_id');
		echo $this->Form->input('user_id');
		echo $this->Form->input('score');
		echo $this->Form->input('other');
		echo $this->Form->input('extra');
		echo $this->Form->input('total');
	?>
	</fieldset>
	<?php echo $this->Form->end(__('Submit')); ?>
</div>

