Merge pull request #11772 from michaelmcandrew/CRM-21821-respect-nav-item-weight
[civicrm-core.git] / templates / CRM / Contribute / Form / Search / ContributionRecur.tpl
1 {*
2 +--------------------------------------------------------------------+
3 | CiviCRM version 5 |
4 +--------------------------------------------------------------------+
5 | Copyright CiviCRM LLC (c) 2004-2018 |
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
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>
73 <tr>
74 <td>{ts}Recurring Contribution Status{/ts}</td>
75 <td></td>
76 <td col='span2'>
77 {$form.contribution_recur_contribution_status_id.html|crmAddClass:twenty}
78 </td>
79 </tr>
80 {if $contributionRecurGroupTree}
81 <tr>
82 <td colspan="4">
83 {include file="CRM/Custom/Form/Search.tpl" groupTree=$contributionRecurGroupTree showHideLinks=false}
84 </td>
85 </tr>
86 {/if}
87 </table>
88 </div>
89 <!-- /.crm-accordion-body -->
90 </div><!-- /.crm-accordion-wrapper -->
91
92