Convert contribution_recur dates to datepicker from jcalendar
[civicrm-core.git] / templates / CRM / Contribute / Form / Search / ContributionRecur.tpl
1 {*
2 +--------------------------------------------------------------------+
3 | CiviCRM version 5 |
4 +--------------------------------------------------------------------+
5 | Copyright CiviCRM LLC (c) 2004-2019 |
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><label for="contribution_recur_start_date_relative">{$form.contribution_recur_start_date_relative.label}</label></td>
39 {include file="CRM/Core/DatePickerRangeWrapper.tpl" fieldName="contribution_recur_start_date" colspan="2" hideRelativeLabel=1}
40 </tr>
41 <tr>
42 <td><label for="contribution_recur_end_date_relative">{$form.contribution_recur_end_date_relative.label}</label></td>
43 {include file="CRM/Core/DatePickerRangeWrapper.tpl" fieldName="contribution_recur_end_date" colspan="2" hideRelativeLabel=1}
44 </tr>
45 <tr>
46 <td><label for="contribution_recur_modified_date_relative">{$form.contribution_recur_modified_date_relative.label}</label></td>
47 {include file="CRM/Core/DatePickerRangeWrapper.tpl" fieldName="contribution_recur_modified_date" colspan="2" hideRelativeLabel=1}
48 </tr>
49 <tr>
50 <td><label for="contribution_recur_next_sched_contribution_date_relative">{$form.contribution_recur_next_sched_contribution_date_relative.label}</label></td>
51 {include file="CRM/Core/DatePickerRangeWrapper.tpl" fieldName="contribution_recur_next_sched_contribution_date" colspan="2" hideRelativeLabel=1}
52 </tr>
53 <tr>
54 <td><label for="contribution_recur_failure_rety_date_relative">{$form.contribution_recur_failure_retry_date_relative.label}</label></td>
55 {include file="CRM/Core/DatePickerRangeWrapper.tpl" fieldName="contribution_recur_failure_retry_date" colspan="2" hideRelativeLabel=1}
56 </tr>
57 <tr>
58 <td><label for="contribution_recur_cancel_date_relative">{$form.contribution_recur_cancel_date_relative.label}</label></td>
59 {include file="CRM/Core/DatePickerRangeWrapper.tpl" fieldName="contribution_recur_cancel_date" colspan="2" hideRelativeLabel=1}
60 </tr>
61 <tr>
62 <td>{ts}Status{/ts}</td>
63 <td></td>
64 <td col='span2'>
65 {$form.contribution_recur_contribution_status_id.html|crmAddClass:twenty}
66 </td>
67 </tr>
68 <tr>
69 <td>{ts}Payment Processor{/ts}</td>
70 <td></td>
71 <td col='span2'>
72 {$form.contribution_recur_payment_processor_id.html}
73 </td>
74 </tr>
75 <tr>
76 <td>{ts}Processor ID{/ts} {help id="processor-id" file="CRM/Contact/Form/Search/Advanced"}</td>
77 <td></td>
78 <td col='span2'>
79 {$form.contribution_recur_processor_id.html}
80 </td>
81 </tr>
82 <tr>
83 <td>{ts}Transaction ID{/ts} {help id="transaction-id" file="CRM/Contact/Form/Search/Advanced"}</td>
84 <td></td>
85 <td col='span2'>
86 {$form.contribution_recur_trxn_id.html}
87 </td>
88 </tr>
89 {if $contributionRecurGroupTree}
90 <tr>
91 <td colspan="4">
92 {include file="CRM/Custom/Form/Search.tpl" groupTree=$contributionRecurGroupTree showHideLinks=false}
93 </td>
94 </tr>
95 {/if}
96 </table>
97 </div>
98 <!-- /.crm-accordion-body -->
99 </div><!-- /.crm-accordion-wrapper -->
100
101