Merge in 5.20
[civicrm-core.git] / templates / CRM / Contribute / Form / Task.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 {ts 1=$totalSelectedContributions}Number of selected contributions: %1{/ts}
11
12 {if $rows }
13 <div class="crm-block crm-form-block crm-contribution-task-form-block">
14 <table width="30%">
15 <tr class="columnheader">
16 <th>{ts}Name{/ts}</th>
17 </tr>
18 {foreach from=$rows item=row}
19 <tr class="{cycle values="odd-row,even-row"}">
20 <td>{$row.displayName}</td>
21 </tr>
22 {/foreach}
23 </table>
24 </div>
25 {/if}