$form->addFormRule(array('CRM_Core_Form_RecurringEntity', 'formRule'));
$form->addDate('repeat_absolute_date', ts('On'), FALSE, array('formatType' => 'mailing'));
$form->addDate('exclude_date', ts('Exclude Date(s)'), FALSE);
- $select = $form->add('select', 'exclude_date_list', ts(''), $form->_excludeDateInfo, FALSE, array('style' => 'width:200px;', 'size' => 4));
+ $select = $form->add('select', 'exclude_date_list', ts(''), $form->_excludeDateInfo, FALSE, array('style' => 'width:150px;', 'size' => 4));
$select->setMultiple(TRUE);
$form->addElement('button','add_to_exclude_list','>>','onClick="addToExcludeList(document.getElementById(\'exclude_date\').value);"');
$form->addElement('button','remove_from_exclude_list', '<<', 'onClick="removeFromExcludeList(\'exclude_date_list\')"');
civicrm_event.slot_label_id,
civicrm_event.summary as summary,
civicrm_pcp_block.id as is_pcp_enabled,
- civicrm_recurring_entity.id as is_repeating_event
+ civicrm_recurring_entity.parent_id as is_repeating_event
FROM civicrm_event
LEFT JOIN civicrm_option_value ON (
civicrm_event.event_type_id = civicrm_option_value.value AND
<tbody>
{foreach from=$eventSummary.events item=values key=id}
<tr class="crm-event_{$id}">
- <td class="crm-event-eventTitle"><a href="{crmURL p="civicrm/event/info" q="reset=1&id=`$id`"}" title="{ts}View event info page{/ts}">{$values.eventTitle}</a></td>
+ <td class="crm-event-eventTitle"><a href="{crmURL p="civicrm/event/info" q="reset=1&id=`$id`"}" title="{ts}View event info page{/ts}">{$values.eventTitle}</a>
+ {if $values.is_repeating_event}
+ <br/>
+ {if $values.is_repeating_event eq $id}
+ <span>Repeating Event - (Parent)</span>
+ {else}
+ <span>Repeating Event - (Child)</span>
+ {/if}
+ {/if}
+ </td>
<td class="crm-event-id">{$id}</td>
<td class="crm-event-eventType">{$values.eventType}</td>
<td class="crm-event-isPublic">{$values.isPublic}</td>