Merge pull request #13078 from agh1/contactdetail-no-or2
[civicrm-core.git] / templates / CRM / Contribute / Page / ContributionTotals.tpl
1 {*
2 +--------------------------------------------------------------------+
3 | Copyright CiviCRM LLC. All rights reserved. |
4 | |
5 | This work is published under the GNU AGPLv3 license with some |
6 | permitted exceptions and without any warranty. For full license |
7 | and copyright information, see https://civicrm.org/licensing |
8 +--------------------------------------------------------------------+
9 *}
10 {*Table displays contribution totals for a contact or search result-set *}
11 {if $annual.count OR $contributionSummary.total.count OR $contributionSummary.cancel.count OR $contributionSummary.soft_credit.count}
12 <table class="form-layout-compressed">
13
14 {if $annual.count}
15 <tr>
16 <th class="contriTotalLeft right">{ts}Current Year-to-Date{/ts} &ndash; {$annual.amount}</th>
17 <th class="right"> &nbsp; {ts}# Completed Contributions{/ts} &ndash; {$annual.count}</th>
18 <th class="right contriTotalRight"> &nbsp; {ts}Avg Amount{/ts} &ndash; {$annual.avg}</th>
19 {if $contributionSummary.cancel.amount}
20 <td>&nbsp;</td>
21 {/if}
22 </tr>
23 {/if}
24
25 {if $contributionSummary }
26 <tr>
27 {if $contributionSummary.total.amount}
28 <th class="contriTotalLeft right">{ts}Total{/ts} &ndash; {$contributionSummary.total.amount}</th>
29 <th class="right"> &nbsp; {ts}# Completed{/ts} &ndash; {$contributionSummary.total.count}</th>
30 <th class="right contriTotalRight"> &nbsp; {ts}Avg{/ts} &ndash; {$contributionSummary.total.avg}</th>
31 {/if}
32 {if $contributionSummary.cancel.amount}
33 <th class="disabled right contriTotalRight"> &nbsp; {ts}Cancelled/Refunded{/ts} &ndash; {$contributionSummary.cancel.amount}</th>
34 {/if}
35 </tr>
36 {if $contributionSummary.soft_credit.count}
37 {include file="CRM/Contribute/Page/ContributionSoftTotals.tpl" softCreditTotals=$contributionSummary.soft_credit}
38 {/if}
39 {/if}
40
41 </table>
42 {/if}