<div class="calendarepeats form">
	<?php echo $this->Form->create('Calendarepeat'); ?>
	<fieldset>
		<legend><?php echo __('Add Calendarepeat'); ?></legend>
				<?php
		echo $this->Form->input('calendar_id');
		echo $this->Form->input('type');
		echo $this->Form->input('repeatduration');
		echo $this->Form->input('start');
		echo $this->Form->input('endType');
		echo $this->Form->input('endvalue');
	?>
	</fieldset>
	<?php echo $this->Form->end(__('Submit')); ?>
</div>

