Merge pull request #13462 from greenpeace-cee/alter-indexes
[civicrm-core.git] / templates / CRM / Contribute / Form / Search / ContributionRecur.tpl
CommitLineData
8af85b9a 1{*
2 +--------------------------------------------------------------------+
fee14197 3 | CiviCRM version 5 |
8af85b9a 4 +--------------------------------------------------------------------+
6b83d5bd 5 | Copyright CiviCRM LLC (c) 2004-2019 |
8af85b9a 6 +--------------------------------------------------------------------+
7 | This file is a part of CiviCRM. |
8 | |
9 | CiviCRM is free software; you can copy, modify, and distribute it |
10 | under the terms of the GNU Affero General Public License |
11 | Version 3, 19 November 2007 and the CiviCRM Licensing Exception. |
12 | |
13 | CiviCRM is distributed in the hope that it will be useful, but |
14 | WITHOUT ANY WARRANTY; without even the implied warranty of |
15 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. |
16 | See the GNU Affero General Public License for more details. |
17 | |
18 | You should have received a copy of the GNU Affero General Public |
19 | License and the CiviCRM Licensing Exception along |
20 | with this program; if not, contact CiviCRM LLC |
21 | at info[AT]civicrm[DOT]org. If you have questions about the |
22 | GNU Affero General Public License or the licensing of CiviCRM, |
23 | see the CiviCRM license FAQ at http://civicrm.org/licensing |
24 +--------------------------------------------------------------------+
25*}
26
24782d26 27<div class="crm-accordion-wrapper crm-contactDetails-accordion
28 {if empty($contribution_recur_pane_open)} collapsed{/if}" id="contribution_recur">
29 <div class="crm-accordion-header">
30 {ts}Recurring Contributions{/ts}
31 </div>
32 <div class="crm-accordion-body">
33 <table class="form-layout-compressed">
34 <tr>
35 <td colspan="4">{$form.contribution_recur_payment_made.html}</td>
36 </tr>
37 <tr>
38 <td>{ts}Start Date{/ts}</td>
39 <td>
40 {include file="CRM/Core/DateRange.tpl" fieldName="contribution_recur_start_date" from='_low' to='_high'}
41 </td>
42 </tr>
43 <tr>
44 <td>{ts}End Date{/ts}</td>
45 <td>
46 {include file="CRM/Core/DateRange.tpl" fieldName="contribution_recur_end_date" from='_low' to='_high'}
47 </td>
48 </tr>
49 <tr>
50 <td>{ts}Modified Date{/ts}</td>
51 <td>
52 {include file="CRM/Core/DateRange.tpl" fieldName="contribution_recur_modified_date" from='_low' to='_high'}
53 </td>
54 </tr>
55 <tr>
56 <td>{ts}Next Scheduled{/ts}</td>
57 <td>
58 {include file="CRM/Core/DateRange.tpl" fieldName="contribution_recur_next_sched_contribution_date" from='_low' to='_high'}
59 </td>
60 </tr>
61 <tr>
62 <td>{ts}Retry Date{/ts}</td>
63 <td>
64 {include file="CRM/Core/DateRange.tpl" fieldName="contribution_recur_failure_retry_date" from='_low' to='_high'}
65 </td>
66 </tr>
67 <tr>
68 <td>{ts}Cancel Date{/ts}</td>
69 <td>
70 {include file="CRM/Core/DateRange.tpl" fieldName="contribution_recur_cancel_date" from='_low' to='_high'}
71 </td>
72 </tr>
5af1389d 73 <tr>
5951bdaa 74 <td>{ts}Status{/ts}</td>
5af1389d
VH
75 <td></td>
76 <td col='span2'>
77 {$form.contribution_recur_contribution_status_id.html|crmAddClass:twenty}
78 </td>
79 </tr>
5951bdaa
MWMC
80 <tr>
81 <td>{ts}Payment Processor{/ts}</td>
82 <td></td>
83 <td col='span2'>
84 {$form.contribution_recur_payment_processor_id.html}
85 </td>
86 </tr>
87 <tr>
64127e03 88 <td>{ts}Processor ID{/ts} {help id="processor-id" file="CRM/Contact/Form/Search/Advanced"}</td>
5951bdaa
MWMC
89 <td></td>
90 <td col='span2'>
64127e03 91 {$form.contribution_recur_processor_id.html}
5951bdaa
MWMC
92 </td>
93 </tr>
94 <tr>
64127e03 95 <td>{ts}Transaction ID{/ts} {help id="transaction-id" file="CRM/Contact/Form/Search/Advanced"}</td>
5951bdaa
MWMC
96 <td></td>
97 <td col='span2'>
64127e03 98 {$form.contribution_recur_trxn_id.html}
5951bdaa
MWMC
99 </td>
100 </tr>
86a0d21e 101 {if $contributionRecurGroupTree}
24782d26 102 <tr>
103 <td colspan="4">
86a0d21e 104 {include file="CRM/Custom/Form/Search.tpl" groupTree=$contributionRecurGroupTree showHideLinks=false}
24782d26 105 </td>
106 </tr>
107 {/if}
108 </table>
109 </div>
110<!-- /.crm-accordion-body -->
111</div><!-- /.crm-accordion-wrapper -->
112
113