Merge pull request #17916 from colemanw/domainCache
[civicrm-core.git] / templates / CRM / Activity / 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*}
10{ts 1=$totalSelectedActivities}Number of selected Activities: %1{/ts}
11
edc51caa 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}