commiting uncommited changes on live site
[weblabels.fsf.org.git] / crm.fsf.org / 20131203 / files / sites / all / modules-new / civicrm / templates / CRM / Contribute / Form / Task / Status.tpl
1 {*
2 +--------------------------------------------------------------------+
3 | CiviCRM version 4.6 |
4 +--------------------------------------------------------------------+
5 | Copyright CiviCRM LLC (c) 2004-2015 |
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 <div class="form-item crm-block crm-form-block crm-contribution-form-block">
27 <div id="help">
28 {ts}Use this form to record received payments for 'pay later' online contributions, membership signups and event registrations. You can use the Transaction ID field to record account+check number, bank transfer identifier, or other unique payment identifier.{/ts}
29 </div>
30 <fieldset>
31 <legend>{ts}Update Contribution Status{/ts}</legend>
32 <table class="form-layout-compressed">
33 <tr class="crm-contribution-form-block-contribution_status_id"><td class="label">{$form.contribution_status_id.label}</td><td class="html-adjust">{$form.contribution_status_id.html}<br />
34 <span class="description">{ts}Assign the selected status to all contributions listed below.{/ts}</td></tr>
35 </table>
36 <table>
37 <tr class="columnheader">
38 <th>{ts}Name{/ts}</th>
39 <th class="right">{ts}Amount{/ts}&nbsp;&nbsp;</th>
40 <th>{ts}Source{/ts}</th>
41 <th>{ts}Fee Amount{/ts}</th>
42 <th>{ts}Paid By{/ts}</th>
43 <th>{ts}Check{/ts} #</th>
44 <th>{ts}Transaction ID{/ts}</th>
45 <th>{ts}Transaction Date{/ts}</th>
46 </tr>
47
48 {foreach from=$rows item=row}
49 <tr class="{cycle values="odd-row,even-row"}">
50 <td>{$row.display_name}</td>
51 <td class="right nowrap">{$row.amount|crmMoney}&nbsp;&nbsp;</td>
52 <td>{$row.source}</td>
53 {assign var="element_name" value="fee_amount_"|cat:$row.contribution_id}
54 <td>{$form.$element_name.html}</td>
55 {assign var="element_name" value="payment_instrument_id_"|cat:$row.contribution_id}
56 <td class="form-text four">{$form.$element_name.html}</td>
57 {assign var="element_name" value="check_number_"|cat:$row.contribution_id}
58 <td class="form-text four">{$form.$element_name.html|crmAddClass:four}</td>
59 {assign var="element_name" value="trxn_id_"|cat:$row.contribution_id}
60 <td>{$form.$element_name.html|crmAddClass:eight}</td>
61 {assign var="element_name" value="trxn_date_"|cat:$row.contribution_id}
62 <td>{include file="CRM/common/jcalendar.tpl" elementName=$element_name}</td>
63 </tr>
64 {/foreach}
65 </table>
66 <div class="crm-submit-buttons">{$form.buttons.html}</div>
67 </fieldset>
68 </div>