CRM-14043 - cid=0 contribution form giving contribution to logged in user
[civicrm-core.git] / templates / CRM / Contribute / Form / Selector.tpl
1 {*
2 +--------------------------------------------------------------------+
3 | CiviCRM version 4.4 |
4 +--------------------------------------------------------------------+
5 | Copyright CiviCRM LLC (c) 2004-2013 |
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 {if $context EQ 'Search'}
27 {include file="CRM/common/pager.tpl" location="top"}
28 {/if}
29
30 {strip}
31 <table class="selector">
32 <thead class="sticky">
33 <tr>
34 {if !$single and $context eq 'Search' }
35 <th scope="col" title="Select Rows">{$form.toggleSelect.html}</th>
36 {/if}
37 {foreach from=$columnHeaders item=header}
38 <th scope="col">
39 {if $header.sort}
40 {assign var='key' value=$header.sort}
41 {$sort->_response.$key.link}
42 {else}
43 {$header.name}
44 {/if}
45 </th>
46 {/foreach}
47 </tr>
48 </thead>
49
50 {counter start=0 skip=1 print=false}
51 {foreach from=$rows item=row}
52 <tr id="rowid{$row.contribution_id}" class="{cycle values="odd-row,even-row"}{if $row.cancel_date} cancelled{/if} crm-contribution_{$row.contribution_id}">
53 {if !$single }
54 {if $context eq 'Search' }
55 {assign var=cbName value=$row.checkbox}
56 <td>{$form.$cbName.html}</td>
57 {/if}
58 <td>{$row.contact_type}</td>
59 <td><a href="{crmURL p='civicrm/contact/view' q="reset=1&cid=`$row.contact_id`"}">{$row.sort_name}</a></td>
60 {/if}
61 <td class="right bold crm-contribution-amount"><span class="nowrap">{$row.total_amount|crmMoney:$row.currency}</span> {if $row.amount_level }<br /> ({$row.amount_level}){/if}
62 {if $row.contribution_recur_id}
63 <br /> {ts}(Recurring Contribution){/ts}
64 {/if}
65 </td>
66 <td class="crm-contribution-type crm-contribution-type_{$row.financial_type_id} crm-financial-type crm-financial-type_{$row.financial_type_id}">{$row.financial_type}</td>
67 <td class="crm-contribution-source">{$row.contribution_source}</td>
68 <td class="crm-contribution-receive_date">{$row.receive_date|crmDate}</td>
69 <td class="crm-contribution-thankyou_date">{$row.thankyou_date|crmDate}</td>
70 <td class="crm-contribution-status">
71 {$row.contribution_status}<br />
72 {if $row.cancel_date}
73 {$row.cancel_date|crmDate}
74 {/if}
75 </td>
76 <td class="crm-contribution-product_name">{$row.product_name}</td>
77 <td>{$row.action|replace:'xx':$row.contribution_id}</td>
78 </tr>
79 {/foreach}
80
81 {* Link to "View all contributions" for Contact Summary selector display *}
82 {if $limit and $pager->_totalItems GT $limit }
83 {if $context eq 'dashboard' }
84 <tr class="even-row">
85 <td colspan="10"><a href="{crmURL p='civicrm/contribute/search' q='reset=1'}">&raquo; {ts}Find more contributions{/ts}... </a></td>
86 </tr>
87 {elseif $context eq 'contribution' }
88 <tr class="even-row">
89 <td colspan="8"><a href="{crmURL p='civicrm/contact/view' q="reset=1&force=1&selectedChild=contribute&cid=$contactId"}">&raquo; {ts}View all contributions from this contact{/ts}... </a></td>
90 </tr>
91 {/if}
92 {/if}
93 </table>
94 {/strip}
95
96 {if $context EQ 'Search'}
97 <script type="text/javascript">
98 {* this function is called to change the color of selected row(s) *}
99 var fname = "{$form.formName}";
100 on_load_init_checkboxes(fname);
101 </script>
102 {/if}
103
104 {if $context EQ 'Search'}
105 {include file="CRM/common/pager.tpl" location="bottom"}
106 {/if}