Remove last in-between parser class
[civicrm-core.git] / templates / CRM / Group / Page / GroupRows.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 {foreach from=$current_rows item=row}
11
12 <tr class="{cycle values="odd-row,even-row"}{if NOT $row.is_active} disabled{/if}">
13 <td>{if NOT $row.is_active}hey{/if}{section name = "indentation" loop = $row.level}>{/section}{$row.title}</td>
14 <td>{$row.id}</td>
15 <td>
16 {$row.description|mb_truncate:80:"...":true}
17 </td>
18 <td>{$row.visibility}</td>
19 <td>{$row.action|replace:'xx':$row.id}</td>
20 </tr>
21 {/foreach}