<div class="courseroles form" style="padding-left: 10px;">
	<?php echo $this->Form->create('Courserole'); ?>
	<fieldset>
		<legend><?php echo __('Add Courserole'); ?></legend>
				<?php
		echo $this->Form->input('course_id');
		echo $this->Form->input('profile_id');
		echo $this->Form->input('role');
		echo $this->Form->input('wDt');
		echo $this->Form->input('status');
	?>
	</fieldset>
	<?php echo $this->Form->end(__('Submit')); ?>
</div>

