<div class="assignmentgroups form">
	<?php echo $this->Form->create('Assignmentgroup'); ?>
	<fieldset>
		<legend><?php echo __('Edit Assignmentgroup'); ?></legend>
				<?php
		echo $this->Form->input('id');
		echo $this->Form->input('assignment_id');
		echo $this->Form->input('user_id');
	?>
	</fieldset>
	<?php echo $this->Form->end(__('Submit')); ?>
</div>

