<div class="questiontypes form">
	<?php echo $this->Form->create('Questiontype'); ?>
	<fieldset>
		<legend><?php echo __('Edit Questiontype'); ?></legend>
				<?php
		echo $this->Form->input('id');
		echo $this->Form->input('title');
		echo $this->Form->input('automategrading',array('options'=>$arr_grading,'label'=>'Grading'));
	?>
	</fieldset>
	<?php echo $this->Form->end(__('Submit')); ?>
</div>

