Merge pull request #18077 from civicrm/5.28
[civicrm-core.git] / templates / CRM / Member / Form / Task.tpl
CommitLineData
6a488035
TO
1{*
2 +--------------------------------------------------------------------+
1188c7a8 3 | Copyright CiviCRM LLC. All rights reserved. |
6a488035 4 | |
1188c7a8
TO
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 |
6a488035
TO
8 +--------------------------------------------------------------------+
9*}
04c56698 10{ts 1=$totalSelectedMembers}Number of selected memberships: %1{/ts}
6a488035 11
31037a42 12{if $rows }
6a488035
TO
13<div class="form-item">
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}