Merge pull request #9566 from totten/master-19690-layout
[civicrm-core.git] / templates / CRM / Contribute / Form / Selector.tpl
1 {*
2 +--------------------------------------------------------------------+
3 | CiviCRM version 4.7 |
4 +--------------------------------------------------------------------+
5 | Copyright CiviCRM LLC (c) 2004-2017 |
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 {include file="CRM/common/pager.tpl" location="top"}
27
28 {strip}
29 <table class="selector row-highlight">
30 <thead class="sticky">
31 <tr>
32 {if !$single and $context eq 'Search' }
33 <th scope="col" title="Select Rows">{$form.toggleSelect.html}</th>
34 {/if}
35 {foreach from=$columnHeaders item=header}
36 <th scope="col">
37 {if $header.sort}
38 {assign var='key' value=$header.sort}
39 {$sort->_response.$key.link}
40 {else}
41 {$header.name}
42 {/if}
43 </th>
44 {/foreach}
45 </tr>
46 </thead>
47
48 <p class="description">
49 {ts}Click arrow to view payment details.{/ts}
50 </p>
51 {counter start=0 skip=1 print=false}
52 {foreach from=$rows item=row}
53 <tr id="rowid{$row.contribution_id}" class="{cycle values="odd-row,even-row"} {if $row.cancel_date} cancelled{/if} crm-contribution_{$row.contribution_id}">
54 {if !$single }
55 {if $context eq 'Search' }
56 {assign var=cbName value=$row.checkbox}
57 <td>{$form.$cbName.html}</td>
58 {/if}
59 <td>{$row.contact_type} &nbsp; <a href="{crmURL p='civicrm/contact/view' q="reset=1&cid=`$row.contact_id`"}">{$row.sort_name}</a></td>
60 {/if}
61 <td class="crm-contribution-amount">
62 {if !$row.contribution_soft_credit_amount}
63 <a class="nowrap bold crm-expand-row" title="{ts}view payments{/ts}" href="{crmURL p='civicrm/payment' q="view=transaction&component=contribution&action=browse&cid=`$row.contact_id`&id=`$row.contribution_id`&selector=1"}">
64 &nbsp; {$row.total_amount|crmMoney:$row.currency}
65 </a>
66 {/if}
67 {if $row.amount_level }<br/>({$row.amount_level}){/if}
68 {if $row.contribution_recur_id}<br/>{ts}(Recurring Contribution){/ts}{/if}
69 </td>
70 {if $softCreditColumns}
71 <td class="right bold crm-contribution-soft_credit_amount">
72 <span class="nowrap">{$row.contribution_soft_credit_amount|crmMoney:$row.currency}</span>
73 </td>
74 {/if}
75 <td class="crm-contribution-type crm-contribution-type_{$row.financial_type_id} crm-financial-type crm-financial-type_{$row.financial_type_id}">
76 {$row.financial_type}
77 </td>
78 <td class="crm-contribution-source">
79 {$row.contribution_source}
80 </td>
81 <td class="crm-contribution-receive_date">
82 {$row.receive_date|crmDate}
83 </td>
84 <td class="crm-contribution-thankyou_date">
85 {$row.thankyou_date|crmDate}
86 </td>
87 <td class="crm-contribution-status">
88 {$row.contribution_status}<br/>
89 {if $row.cancel_date}
90 {$row.cancel_date|crmDate}
91 {/if}
92 </td>
93 <td class="crm-contribution-product_name">{$row.product_name}</td>
94 {if $softCreditColumns}
95 <td class="crm-contribution-soft_credit_name">
96 <a href="{crmURL p='civicrm/contact/view' q="reset=1&cid=`$row.contribution_soft_credit_contact_id`"}">{$row.contribution_soft_credit_name}</a>
97 </td>
98 <td class="crm-contribution-soft_credit_type">{$row.contribution_soft_credit_type}</td>
99 {/if}
100 <td>{$row.action|replace:'xx':$row.contribution_id}</td>
101 </tr>
102 {/foreach}
103
104 </table>
105 {/strip}
106
107 {include file="CRM/common/pager.tpl" location="bottom"}
108 {crmScript file='js/crm.expandRow.js'}