copyright and version fixes
[civicrm-core.git] / templates / CRM / Contribute / Page / ContributionRecur.tpl
1 {*
2 +--------------------------------------------------------------------+
3 | CiviCRM version 4.5 |
4 +--------------------------------------------------------------------+
5 | Copyright CiviCRM LLC (c) 2004-2014 |
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 {include file="CRM/common/enableDisableApi.tpl"}
28 {include file="CRM/common/crmeditable.tpl"}
29
30 {if $action eq 4} {* when action is view *}
31 {if $recur}
32 <h3>{ts}View Recurring Payment{/ts}</h3>
33 <div class="crm-block crm-content-block crm-recurcontrib-view-block">
34 <table class="crm-info-panel">
35 <tr><td class="label">{ts}Amount{/ts}</td><td>{$recur.amount|crmMoney:$recur.currency}{if $is_test} ({ts}test{/ts}){/if}</td></tr>
36 <tr><td class="label">{ts}Frequency{/ts}</td><td>every {$recur.frequency_interval} {$recur.frequency_unit}</td></tr>
37 <tr><td class="label">{ts}Installments{/ts}</td><td>{$recur.installments}</td></tr>
38 <tr><td class="label">{ts}Status{/ts}</td><td>{$recur.contribution_status}</td></tr>
39 <tr><td class="label">{ts}Start Date{/ts}</td><td>{$recur.start_date|crmDate}</td></tr>
40 <tr><td class="label">{ts}Created Date{/ts}</td><td>{$recur.create_date|crmDate}</td></tr>
41 {if $recur.modified_date}<tr><td class="label">{ts}Modified Date{/ts}</td><td>{$recur.modified_date|crmDate}</td></tr>{/if}
42 {if $recur.cancel_date}<tr><td class="label">{ts}Cancelled Date{/ts}</td><td>{$recur.cancel_date|crmDate}</td></tr>{/if}
43 {if $recur.cancel_date}<tr><td class="label">{ts}End Date{/ts}</td><td>{$recur.end_date|crmDate}</td></tr>{/if}
44 {if $recur.processor_id}<tr><td class="label">{ts}Processor ID{/ts}</td><td>{$recur.processor_id}</td></tr>{/if}
45 <tr><td class="label">{ts}Transaction ID{/ts}</td><td>{$recur.trxn_id}</td></tr>
46 {if $recur.invoice_id}<tr><td class="label">{ts}Invoice ID{/ts}</td><td>{$recur.invoice_id}</td></tr>{/if}
47 <tr><td class="label">{ts}Cycle Day{/ts}</td><td>{$recur.cycle_day}</td></tr>
48 {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}
49 <tr><td class="label">{ts}Failure Count{/ts}</td><td>{$recur.failure_count}</td></tr>
50 {if $recur.invoice_id}<tr><td class="label">{ts}Failure Retry Date{/ts}</td><td>{$recur.next_sched_contribution_date|crmDate}</td></tr>{/if}
51 <tr><td class="label">{ts}Auto Renew?{/ts}</td><td>{if $recur.auto_renew}{ts}Yes{/ts}{else}{ts}No{/ts}{/if}</td></tr>
52 {if $recur.payment_processor}<tr><td class="label">{ts}Payment Processor{/ts}</td><td>{$recur.payment_processor}</td></tr>{/if}
53 </table>
54 <div class="crm-submit-buttons"><a class="button cancel form-submit" href="{crmURL p='civicrm/contact/view' q='action=browse&selectedChild=contribute'}">{ts}Done{/ts}</a></div>
55 </div>
56 {/if}
57 {/if}
58 {if $recurRows}
59 {strip}
60 <table class="selector row-highlight">
61 <tr class="columnheader">
62 <th scope="col">{ts}Amount{/ts}</th>
63 <th scope="col">{ts}Frequency{/ts}</th>
64 <th scope="col">{ts}Start Date{/ts}</th>
65 <th scope="col">{ts}Installments{/ts}</th>
66 <th scope="col">{ts}Status{/ts}</th>
67 <th scope="col">&nbsp;</th>
68 </tr>
69
70 {foreach from=$recurRows item=row}
71 {assign var=id value=$row.id}
72 <tr id="contribution_recur-{$row.id}" class="crm-entity {cycle values="even-row,odd-row"}{if NOT $row.is_active} disabled{/if}">
73 <td>{$row.amount|crmMoney}{if $row.is_test} ({ts}test{/ts}){/if}</td>
74 <td>{ts}Every{/ts} {$row.frequency_interval} {$row.frequency_unit} </td>
75 <td>{$row.start_date|crmDate}</td>
76 <td>{$row.installments}</td>
77 <td>{$row.contribution_status}</td>
78 <td>
79 {$row.action|replace:'xx':$row.recurId}
80 </td>
81 </tr>
82 {/foreach}
83 </table>
84 {/strip}
85 {/if}