Merge pull request #2736 from colemanw/confirm
[civicrm-core.git] / templates / CRM / Admin / Page / ScheduleReminders.tpl
CommitLineData
6a488035
TO
1{*
2 +--------------------------------------------------------------------+
232624b1 3 | CiviCRM version 4.4 |
6a488035
TO
4 +--------------------------------------------------------------------+
5 | Copyright (C) 2011 Marty Wright |
6 | Licensed to CiviCRM under the Academic Free License version 3.0. |
7 +--------------------------------------------------------------------+
8 | This file is a part of CiviCRM. |
9 | |
10 | CiviCRM is free software; you can copy, modify, and distribute it |
11 | under the terms of the GNU Affero General Public License |
12 | Version 3, 19 November 2007 and the CiviCRM Licensing Exception. |
13 | |
14 | CiviCRM is distributed in the hope that it will be useful, but |
15 | WITHOUT ANY WARRANTY; without even the implied warranty of |
16 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. |
17 | See the GNU Affero General Public License for more details. |
18 | |
19 | You should have received a copy of the GNU Affero General Public |
20 | License and the CiviCRM Licensing Exception along |
21 | with this program; if not, contact CiviCRM LLC |
22 | at info[AT]civicrm[DOT]org. If you have questions about the |
23 | GNU Affero General Public License or the licensing of CiviCRM, |
24 | see the CiviCRM license FAQ at http://civicrm.org/licensing |
25 +--------------------------------------------------------------------+
26*}
27{* this template is for configuring Scheduled Reminders *}
28
29{if $action eq 1 or $action eq 2 or $action eq 8 or $action eq 16384}
30 {include file="CRM/Admin/Form/ScheduleReminders.tpl"}
31{else}
4b628e67
CW
32{* include wysiwyg related files*}
33{include file="CRM/common/wysiwyg.tpl" includeWysiwygEditor=true}
b1dfb588
DG
34{capture assign=schedRemindersDocLink}{docURL page="user/current/email/scheduled-reminders/"}{/capture}
35<div class="help">
36 {ts}Scheduled reminders allow you to automatically send messages to contacts regarding their memberships, participation in events, or other activities.{/ts} {$schedRemindersDocLink}
37</div>
6a488035
TO
38{if $rows}
39 <div id="reminder">
40 {include file="CRM/Admin/Page/Reminders.tpl"}
41 <div class="action-link">
42 <a href="{crmURL q="action=add&reset=1"}" id="newScheduleReminder" class="button"><span><div class="icon add-icon"></div>{ts}Add Reminder{/ts}</span></a>
43 </div>
44
45 </div>
46
47{else}
48 <div class="messages status no-popup">
49 <div class="icon inform-icon"></div>
4b628e67
CW
50 {capture assign=crmURL}href="{crmURL p='civicrm/admin/scheduleReminders' q="action=add&reset=1"}" class="action-item"{/capture}
51 {ts 1=$crmURL}There are no Scheduled Reminders configured. You can <a %1>add one</a>.{/ts}
6a488035
TO
52 </div>
53{/if}
54{/if}