<div class="calendarepeats view">
<h2><?php  echo __('Calendarepeat'); ?></h2>
	<dl>
		<dt><?php echo __('Id'); ?></dt>
		<dd>
			<?php echo h($calendarepeat['Calendarepeat']['id']); ?>
			&nbsp;
		</dd>
		<dt><?php echo __('Calendar'); ?></dt>
		<dd>
			<?php echo $this->Html->link($calendarepeat['Calendar']['title'], array('controller' => 'calendars', 'action' => 'view', $calendarepeat['Calendar']['id'])); ?>
			&nbsp;
		</dd>
		<dt><?php echo __('Type'); ?></dt>
		<dd>
			<?php echo h($calendarepeat['Calendarepeat']['type']); ?>
			&nbsp;
		</dd>
		<dt><?php echo __('Repeatduration'); ?></dt>
		<dd>
			<?php echo h($calendarepeat['Calendarepeat']['repeatduration']); ?>
			&nbsp;
		</dd>
		<dt><?php echo __('Start'); ?></dt>
		<dd>
			<?php echo h($calendarepeat['Calendarepeat']['start']); ?>
			&nbsp;
		</dd>
		<dt><?php echo __('EndType'); ?></dt>
		<dd>
			<?php echo h($calendarepeat['Calendarepeat']['endType']); ?>
			&nbsp;
		</dd>
		<dt><?php echo __('Endvalue'); ?></dt>
		<dd>
			<?php echo h($calendarepeat['Calendarepeat']['endvalue']); ?>
			&nbsp;
		</dd>
	</dl>
</div>
<div class="actions">
	<h3><?php echo __('Actions'); ?></h3>
	<ul>
		<li><?php echo $this->Html->link(__('Edit Calendarepeat'), array('action' => 'edit', $calendarepeat['Calendarepeat']['id'])); ?> </li>
		<li><?php echo $this->Form->postLink(__('Delete Calendarepeat'), array('action' => 'delete', $calendarepeat['Calendarepeat']['id']), null, __('Are you sure you want to delete # %s?', $calendarepeat['Calendarepeat']['id'])); ?> </li>
		<li><?php echo $this->Html->link(__('List Calendarepeats'), array('action' => 'index')); ?> </li>
		<li><?php echo $this->Html->link(__('New Calendarepeat'), array('action' => 'add')); ?> </li>
		<li><?php echo $this->Html->link(__('List Calendars'), array('controller' => 'calendars', 'action' => 'index')); ?> </li>
		<li><?php echo $this->Html->link(__('New Calendar'), array('controller' => 'calendars', 'action' => 'add')); ?> </li>
	</ul>
</div>
