Merge pull request #11154 from agileware/CRM-20421
[civicrm-core.git] / templates / CRM / Contribute / Page / ContributionRecur.tpl
CommitLineData
6a488035
TO
1{*
2 +--------------------------------------------------------------------+
2c4c49ca 3 | CiviCRM version 4.7 |
6a488035 4 +--------------------------------------------------------------------+
2a73d3b0 5 | Copyright CiviCRM LLC (c) 2004-2017 |
6a488035
TO
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
4d17a233 27{include file="CRM/common/enableDisableApi.tpl"}
6a488035
TO
28
29{if $action eq 4} {* when action is view *}
30 {if $recur}
31 <h3>{ts}View Recurring Payment{/ts}</h3>
32 <div class="crm-block crm-content-block crm-recurcontrib-view-block">
33 <table class="crm-info-panel">
34 <tr><td class="label">{ts}Amount{/ts}</td><td>{$recur.amount|crmMoney:$recur.currency}{if $is_test} ({ts}test{/ts}){/if}</td></tr>
35 <tr><td class="label">{ts}Frequency{/ts}</td><td>every {$recur.frequency_interval} {$recur.frequency_unit}</td></tr>
36 <tr><td class="label">{ts}Installments{/ts}</td><td>{$recur.installments}</td></tr>
37 <tr><td class="label">{ts}Status{/ts}</td><td>{$recur.contribution_status}</td></tr>
38 <tr><td class="label">{ts}Start Date{/ts}</td><td>{$recur.start_date|crmDate}</td></tr>
39 <tr><td class="label">{ts}Created Date{/ts}</td><td>{$recur.create_date|crmDate}</td></tr>
40 {if $recur.modified_date}<tr><td class="label">{ts}Modified Date{/ts}</td><td>{$recur.modified_date|crmDate}</td></tr>{/if}
41 {if $recur.cancel_date}<tr><td class="label">{ts}Cancelled Date{/ts}</td><td>{$recur.cancel_date|crmDate}</td></tr>{/if}
b0efbefd 42 {if $recur.end_date}<tr><td class="label">{ts}End Date{/ts}</td><td>{$recur.end_date|crmDate}</td></tr>{/if}
6a488035
TO
43 {if $recur.processor_id}<tr><td class="label">{ts}Processor ID{/ts}</td><td>{$recur.processor_id}</td></tr>{/if}
44 <tr><td class="label">{ts}Transaction ID{/ts}</td><td>{$recur.trxn_id}</td></tr>
45 {if $recur.invoice_id}<tr><td class="label">{ts}Invoice ID{/ts}</td><td>{$recur.invoice_id}</td></tr>{/if}
46 <tr><td class="label">{ts}Cycle Day{/ts}</td><td>{$recur.cycle_day}</td></tr>
797b807e 47 {if $recur.contribution_status_id neq 3}<tr><td class="label">{ts}Next Contribution{/ts}</td><td>{$recur.next_sched_contribution_date|crmDate}</td></tr>{/if}
6a488035 48 <tr><td class="label">{ts}Failure Count{/ts}</td><td>{$recur.failure_count}</td></tr>
797b807e 49 {if $recur.invoice_id}<tr><td class="label">{ts}Failure Retry Date{/ts}</td><td>{$recur.next_sched_contribution_date|crmDate}</td></tr>{/if}
6a488035
TO
50 <tr><td class="label">{ts}Auto Renew?{/ts}</td><td>{if $recur.auto_renew}{ts}Yes{/ts}{else}{ts}No{/ts}{/if}</td></tr>
51 {if $recur.payment_processor}<tr><td class="label">{ts}Payment Processor{/ts}</td><td>{$recur.payment_processor}</td></tr>{/if}
467fe956 52 {if $recur.financial_type}<tr><td class="label">{ts}Financial Type{/ts}</td><td>{$recur.financial_type}</td></tr>{/if}
53 {if $recur.campaign}<tr><td class="label">{ts}Campaign{/ts}</td><td>{$recur.campaign}</td></tr>{/if}
fadaea59
MW
54 {if $recur.membership_id}<tr>
55 <td class="label">{ts}Membership{/ts}</td>
56 <td><a class="crm-hover-button" href='{crmURL p="civicrm/contact/view/membership" q="action=view&reset=1&cid=`$contactId`&id=`$recur.membership_id`&context=membership&selectedChild=member"}'>{$recur.membership_name}</a></td>
57 </tr>
58 {/if}
6a488035 59 </table>
97e557d7 60 <div class="crm-submit-buttons"><a class="button cancel crm-form-submit" href="{crmURL p='civicrm/contact/view' q='action=browse&selectedChild=contribute'}">{ts}Done{/ts}</a></div>
6a488035
TO
61 </div>
62 {/if}
63{/if}
64{if $recurRows}
65 {strip}
16850d34 66 <table class="selector row-highlight">
6a488035
TO
67 <tr class="columnheader">
68 <th scope="col">{ts}Amount{/ts}</th>
69 <th scope="col">{ts}Frequency{/ts}</th>
70 <th scope="col">{ts}Start Date{/ts}</th>
71 <th scope="col">{ts}Installments{/ts}</th>
72 <th scope="col">{ts}Status{/ts}</th>
73 <th scope="col">&nbsp;</th>
74 </tr>
75
76 {foreach from=$recurRows item=row}
77 {assign var=id value=$row.id}
2d221ef7 78 <tr id="contribution_recur-{$row.id}" data-action="cancel" class="crm-entity {cycle values="even-row,odd-row"}{if NOT $row.is_active} disabled{/if}">
8007a32c 79 <td>{$row.amount|crmMoney:$row.currency}{if $row.is_test} ({ts}test{/ts}){/if}</td>
6a488035
TO
80 <td>{ts}Every{/ts} {$row.frequency_interval} {$row.frequency_unit} </td>
81 <td>{$row.start_date|crmDate}</td>
82 <td>{$row.installments}</td>
83 <td>{$row.contribution_status}</td>
84 <td>
85 {$row.action|replace:'xx':$row.recurId}
86 </td>
87 </tr>
88 {/foreach}
89 </table>
90 {/strip}
91{/if}