Merge pull request #2793 from monishdeb/HR-322
[civicrm-core.git] / templates / CRM / Admin / Page / Reminders.tpl
index 7f97a331e1a8e67fe68e842fc95705c730dc05c1..5c730f53c6a109cdc875984cf62660b352174c49 100755 (executable)
@@ -1,6 +1,6 @@
 {*
  +--------------------------------------------------------------------+
- | CiviCRM version 4.4                                                |
+ | CiviCRM version 4.5                                                |
  +--------------------------------------------------------------------+
  | Copyright (C) 2011 Marty Wright                                    |
  | Licensed to CiviCRM under the Academic Free License version 3.0.   |
 *}
 {* this template is for configuring Scheduled Reminders Table*}
 {strip}
-  {include file="CRM/common/enableDisableApi.tpl"}
-  {include file="CRM/common/crmeditable.tpl"}
-  {include file="CRM/common/jsortable.tpl"}
+  {if $rows and is_array($rows)}
+    {include file="CRM/common/enableDisableApi.tpl"}
+    {include file="CRM/common/crmeditable.tpl"}
+    {include file="CRM/common/jsortable.tpl"}
+  {/if}
   <table id="scheduleReminders" class="display">
     <thead>
     <tr id="options" class="columnheader">
       <th ></th>
     </tr>
     </thead>
-    {foreach from=$rows item=row}
-      <tr id="action_schedule-{$row.id}" class="crm-entity {cycle values="odd-row,even-row"} {$row.class}{if NOT $row.is_active} disabled{/if}">
-        <td class="crm-scheduleReminders-title crm-editable" data-field="title">{$row.title}</td>
-        <td class="crm-scheduleReminders-value">{$row.entity} - {$row.value}</td>
-        <td class="crm-scheduleReminders-description">{if $row.absolute_date}{$row.absolute_date|crmDate}{else}{$row.start_action_offset}&nbsp;{$row.start_action_unit}{if $row.start_action_offset > 1}{ts}(s){/ts}{/if}&nbsp;{$row.start_action_condition}&nbsp;{$row.entityDate}{/if}</td>
-        <td class="crm-scheduleReminders-title">{$row.status}</td>
-        <td class="crm-scheduleReminders-is_repeat">{if $row.is_repeat eq 1}{ts}Yes{/ts}{else}{ts}No{/ts}{/if}&nbsp;</td>
-        <td id="row_{$row.id}_status" class="crm-scheduleReminders-is_active">{if $row.is_active eq 1} {ts}Yes{/ts} {else} {ts}No{/ts} {/if}</td>
-        <td>{$row.action|replace:'xx':$row.id}</td>
-        <td class="hiddenElement"></td>
-      </tr>
-    {/foreach}
+    {if $rows and is_array($rows)}
+      {foreach from=$rows item=row}
+        <tr id="action_schedule-{$row.id}" class="crm-entity {cycle values="odd-row,even-row"} {$row.class}{if NOT $row.is_active} disabled{/if}">
+          <td class="crm-scheduleReminders-title crm-editable" data-field="title">{$row.title}</td>
+          <td class="crm-scheduleReminders-value">{$row.entity} - {$row.value}</td>
+          <td class="crm-scheduleReminders-description">{if $row.absolute_date}{$row.absolute_date|crmDate}{else}{$row.start_action_offset}&nbsp;{$row.start_action_unit}{if $row.start_action_offset > 1}{ts}(s){/ts}{/if}&nbsp;{$row.start_action_condition}&nbsp;{$row.entityDate}{/if}</td>
+          <td class="crm-scheduleReminders-title">{$row.status}</td>
+          <td class="crm-scheduleReminders-is_repeat">{if $row.is_repeat eq 1}{ts}Yes{/ts}{else}{ts}No{/ts}{/if}&nbsp;</td>
+          <td id="row_{$row.id}_status" class="crm-scheduleReminders-is_active">{if $row.is_active eq 1} {ts}Yes{/ts} {else} {ts}No{/ts} {/if}</td>
+          <td>{$row.action|replace:'xx':$row.id}</td>
+          <td class="hiddenElement"></td>
+        </tr>
+      {/foreach}
+    {else}
+      <tr><td colspan="8">{ts}No Scheduled Reminders have been created.{/ts}</td></tr>
+    {/if}
   </table>
 {/strip}