Merge pull request #2736 from colemanw/confirm
[civicrm-core.git] / templates / CRM / Admin / Page / Reminders.tpl
index c43c32729a286dd050932179dbd4ac468f63c9f7..379393a57eb680ee6ff2c18b869fda6e84442de0 100755 (executable)
  +--------------------------------------------------------------------+
 *}
 {* 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"}
-        <table id="scheduleReminders" class="display">
-        <thead>
-        <tr id="options" class="columnheader">
-            <th class="sortable">{ts}Title{/ts}</th>
-            <th >{ts}Reminder For{/ts}</th>
-            <th >{ts}When{/ts}</th>
-            <th >{ts}While{/ts}</th>
-            <th >{ts}Repeat{/ts}</th>
-            <th >{ts}Active?{/ts}</th>
-            <th class="hiddenElement"></th>
-            <th ></th>
-        </tr>
-        </thead>
-        {foreach from=$rows item=row}
-        <tr id="scheduleReminders-{$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>
+{strip}
+  {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 class="sortable">{ts}Title{/ts}</th>
+      <th >{ts}Reminder For{/ts}</th>
+      <th >{ts}When{/ts}</th>
+      <th >{ts}While{/ts}</th>
+      <th >{ts}Repeat{/ts}</th>
+      <th >{ts}Active?{/ts}</th>
+      <th class="hiddenElement"></th>
+      <th ></th>
+    </tr>
+    </thead>
+    {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}
-        </table>
-        {/strip}
+      {/foreach}
+    {else}
+      <tr><td colspan="8">{ts}No Scheduled Reminders have been created.{/ts}</td></tr>
+    {/if}
+  </table>
+{/strip}