<div class="reminders view">
<h2><?php  echo __('Reminder'); ?></h2>
	<dl>
		<dt><?php echo __('Id'); ?></dt>
		<dd>
			<?php echo h($reminder['Reminder']['id']); ?>
			&nbsp;
		</dd>
		<dt><?php echo __('Calendar'); ?></dt>
		<dd>
			<?php echo $this->Html->link($reminder['Calendar']['title'], array('controller' => 'calendars', 'action' => 'view', $reminder['Calendar']['id'])); ?>
			&nbsp;
		</dd>
		<dt><?php echo __('Type'); ?></dt>
		<dd>
			<?php echo h($reminder['Reminder']['type']); ?>
			&nbsp;
		</dd>
		<dt><?php echo __('Duration'); ?></dt>
		<dd>
			<?php echo h($reminder['Reminder']['duration']); ?>
			&nbsp;
		</dd>
		<dt><?php echo __('ReminderType'); ?></dt>
		<dd>
			<?php echo h($reminder['Reminder']['reminderType']); ?>
			&nbsp;
		</dd>
	</dl>
</div>
<div class="actions">
	<h3><?php echo __('Actions'); ?></h3>
	<ul>
		<li><?php echo $this->Html->link(__('Edit Reminder'), array('action' => 'edit', $reminder['Reminder']['id'])); ?> </li>
		<li><?php echo $this->Form->postLink(__('Delete Reminder'), array('action' => 'delete', $reminder['Reminder']['id']), null, __('Are you sure you want to delete # %s?', $reminder['Reminder']['id'])); ?> </li>
		<li><?php echo $this->Html->link(__('List Reminders'), array('action' => 'index')); ?> </li>
		<li><?php echo $this->Html->link(__('New Reminder'), 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>
