Merge branch '5.11' of https://github.com/civicrm/civicrm-core
[civicrm-core.git] / templates / CRM / Contribute / Page / UserDashboard.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 {crmRegion name="crm-contribute-userdashboard-pre"}
27 {/crmRegion}
28 <div class="view-content">
29 {if $contribute_rows}
30 {strip}
31 <table class="selector">
32 <tr class="columnheader">
33 <th>{ts}Total Amount{/ts}</th>
34 <th>{ts}Financial Type{/ts}</th>
35 <th>{ts}Received date{/ts}</th>
36 <th>{ts}Receipt Sent{/ts}</th>
37 <th>{ts}Status{/ts}</th>
38 {if $invoicing && $invoices}
39 <th></th>
40 {/if}
41 {if $invoicing && $defaultInvoicePage}
42 <th></th>
43 {/if}
44 </tr>
45
46 {foreach from=$contribute_rows item=row}
47 <tr id='rowid{$row.contribution_id}'
48 class="{cycle values="odd-row,even-row"}{if $row.cancel_date} disabled{/if}">
49 <td>{$row.total_amount|crmMoney:$row.currency} {if $row.amount_level } - {$row.amount_level} {/if}
50 {if $row.contribution_recur_id}
51 <br/>
52 {ts}(Recurring Contribution){/ts}
53 {/if}
54 </td>
55 <td>{$row.financial_type}</td>
56 <td>{$row.receive_date|truncate:10:''|crmDate}</td>
57 <td>{$row.receipt_date|truncate:10:''|crmDate}</td>
58 <td>{$row.contribution_status}</td>
59 {if $invoicing && $invoices}
60 <td>
61 {* @todo Instead of this tpl handling assign actions as an array attached the row, iterate through - will better accomodate extension overrides and competition for scarce real estate on this page*}
62 {assign var='id' value=$row.contribution_id}
63 {assign var='contact_id' value=$row.contact_id}
64 {assign var='urlParams' value="reset=1&id=$id&cid=$contact_id"}
65 {if call_user_func(array('CRM_Core_Permission','check'), 'view my invoices') OR call_user_func(array('CRM_Core_Permission','check'), 'access CiviContribute')}
66 <a class="button no-popup nowrap"
67 href="{crmURL p='civicrm/contribute/invoice' q=$urlParams}">
68 <i class="crm-i fa-print"></i>
69 {if $row.contribution_status_name != 'Refunded' && $row.contribution_status_name != 'Cancelled' }
70 <span>{ts}Print Invoice{/ts}</span>
71 {else}
72 <span>{ts}Print Invoice and Credit Note{/ts}</span>
73 {/if}
74 </a>
75 {/if}
76 </td>
77 {/if}
78 {if $defaultInvoicePage && $row.contribution_status_name == 'Pending' }
79 {* @todo Instead of this tpl handling assign actions as an array attached the row, iterate through - will better accomodate extension overrides and competition for scarce real estate on this page*}
80 <td>
81 {assign var='checksum_url' value=""}
82 {if $userChecksum}
83 {assign var='checksum_url' value="&cid=$contactId&cs=$userChecksum"}
84 {/if}
85 {assign var='id' value=$row.contribution_id}
86 {capture assign=payNowLink}{crmURL p='civicrm/contribute/transact' q="reset=1&id=`$defaultInvoicePage`&ccid=`$id`$checksum_url"}{/capture}
87 <a class="button" href="{$payNowLink}"><span class='nowrap'>{ts}Pay Now{/ts}</span></a>
88 </td>
89 {/if}
90 </tr>
91 {/foreach}
92 </table>
93 {/strip}
94 {if $contributionSummary.total.count gt 12}
95 {ts}Contact us for information about contributions prior to those listed above.{/ts}
96 {/if}
97 {else}
98 <div class="messages status no-popup">
99 <div class="icon inform-icon"></div>
100 {ts}There are no contributions on record for you.{/ts}
101 </div>
102 {/if}
103
104
105 {if $honor}
106 {if $honorRows}
107 {strip}
108 <div class="help">
109 {ts}Contributions made in your honor{/ts}:
110 </div>
111 <table class="selector">
112 <tr class="columnheader">
113 <th>{ts}Contributor{/ts}</th>
114 <th>{ts}Amount{/ts}</th>
115 <th>{ts}Type{/ts}</th>
116 <th>{ts}Financial Type{/ts}</th>
117 <th>{ts}Received date{/ts}</th>
118 <th>{ts}Receipt Sent{/ts}</th>
119 <th>{ts}Status{/ts}</th>
120 </tr>
121 {foreach from=$honorRows item=row}
122 <tr id='rowid{$row.honorId}' class="{cycle values="odd-row,even-row"}">
123 <td><a href="{crmURL p="civicrm/contact/view" q="reset=1&cid=`$row.honorId`"}"
124 id="view_contact">{$row.display_name}</a></td>
125 <td>{$row.amount}</td>
126 <td>{$row.honor_type}</td>
127 <td>{$row.type}</td>
128 <td>{$row.receive_date|truncate:10:''|crmDate}</td>
129 <td>{$row.receipt_date|truncate:10:''|crmDate}</td>
130 <td>{$row.contribution_status}</td>
131 </tr>
132 {/foreach}
133 </table>
134 {/strip}
135 {/if}
136 {/if}
137
138 {if $recur}
139 {if $recurRows}
140 {strip}
141 <div><label>{ts}Recurring Contribution(s){/ts}</label></div>
142 <table class="selector">
143 <tr class="columnheader">
144 <th>{ts}Terms:{/ts}</th>
145 <th>{ts}Status{/ts}</th>
146 <th>{ts}Installments{/ts}</th>
147 <th>{ts}Created{/ts}</th>
148 <th></th>
149 </tr>
150 {foreach from=$recurRows item=row key=id}
151 <tr class="{cycle values="odd-row,even-row"}">
152 <td><label>{$recurRows.$id.amount|crmMoney}</label>
153 every {$recurRows.$id.frequency_interval} {$recurRows.$id.frequency_unit}
154 for {$recurRows.$id.installments} installments
155 </td>
156 <td>{$recurRows.$id.recur_status}</td>
157 <td>{if $recurRows.$id.completed}<a href="{$recurRows.$id.link}">{$recurRows.$id.completed}
158 /{$recurRows.$id.installments}</a>
159 {else}0/{$recurRows.$id.installments} {/if}</td>
160 <td>{$recurRows.$id.create_date|crmDate}</td>
161 <td>{$recurRows.$id.action|replace:'xx':$recurRows.id}</td>
162 </tr>
163 {/foreach}
164 </table>
165 {/strip}
166 {/if}
167 {/if}
168 </div>
169 {crmRegion name="crm-contribute-userdashboard-post"}
170 {/crmRegion}