Merge pull request #4319 from rohankatkar/webtest_4.5.0
[civicrm-core.git] / templates / CRM / Contribute / Form / Task / Batch.tpl
1 {*
2 +--------------------------------------------------------------------+
3 | CiviCRM version 4.5 |
4 +--------------------------------------------------------------------+
5 | Copyright CiviCRM LLC (c) 2004-2014 |
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="batch-update form-item">
27 <fieldset>
28 <div id="help">
29 {ts}Update field values for each contribution as needed. Click <strong>Update Contributions</strong> below to save all your changes. To set a field to the same value for ALL rows, enter that value for the first contribution and then click the <strong>Copy icon</strong> (next to the column title).{/ts}
30 </div>
31 <legend>{$profileTitle}</legend>
32 <table class="crm-copy-fields">
33 <thead class="sticky">
34 <tr class="columnheader">
35 {foreach from=$readOnlyFields item=fTitle key=fName}
36 <th>{$fTitle}</th>
37 {/foreach}
38
39 {foreach from=$fields item=field key=fieldName}
40 <td><img src="{$config->resourceBase}i/copy.png" alt="{ts 1=$field.title}Click to copy %1 from row one to all rows.{/ts}" fname="{$field.name}" class="action-icon" title="{ts}Click here to copy the value in row one to ALL rows.{/ts}" />{$field.title}</td>
41 {/foreach}
42 </tr>
43 </thead>
44 {foreach from=$componentIds item=cid}
45 <tr class="{cycle values="odd-row,even-row"}" entity_id="{$cid}">
46 {foreach from=$readOnlyFields item=fTitle key=fName}
47 <td>{$contactDetails.$cid.$fName}</td>
48 {/foreach}
49
50 {foreach from=$fields item=field key=fieldName}
51 {assign var=n value=$field.name}
52 {if ( $fields.$n.data_type eq 'Date') or ( $n eq 'thankyou_date' ) or ( $n eq 'cancel_date' ) or ( $n eq 'receipt_date' ) or ( $n eq 'receive_date' )}
53 <td class="compressed">{include file="CRM/common/jcalendar.tpl" elementName=$n elementIndex=$cid batchUpdate=1}</td>
54 {else}
55 <td class="compressed">{$form.field.$cid.$n.html}</td>
56 {/if}
57 {/foreach}
58 </tr>
59 {/foreach}
60 </tr>
61 </table>
62 <div class="crm-submit-buttons">{if $fields}{$form._qf_Batch_refresh.html}{/if} &nbsp; {$form.buttons.html}</div>
63 </fieldset>
64 </div>
65
66 {*include batch copy js js file*}
67 {include file="CRM/common/batchCopy.tpl"}