<div class="calendars form">
	<?php echo $this->Form->create('Calendar'); ?>
	<fieldset>
		<legend><?php echo __('Edit Calendar'); ?></legend>
				<?php
		echo $this->Form->input('id');
		echo $this->Form->input('course_id');
		echo $this->Form->input('profile_id');
		echo $this->Form->input('title');
		echo $this->Form->input('fromDt');
		echo $this->Form->input('fromTm');
		echo $this->Form->input('toDt');
		echo $this->Form->input('toTm');
		echo $this->Form->input('location');
		echo $this->Form->input('description');
		echo $this->Form->input('color');
		echo $this->Form->input('privacy');
	?>
	</fieldset>
	<?php echo $this->Form->end(__('Submit')); ?>
</div>

